This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated code and podspec for Swift 4.1
- Loading branch information
Showing
3 changed files
with
61 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Zephyr" | ||
s.version = "2.2.4" | ||
s.summary = "Effortlessly synchronize UserDefaults over iCloud" | ||
s.swift_version = "4.1" | ||
# Version | ||
s.version = "3.1.0" | ||
s.swift_version = '4.1' | ||
|
||
# Meta | ||
s.name = "Zephyr" | ||
s.summary = "Effortlessly synchronize UserDefaults over iCloud." | ||
s.homepage = "https://github.com/ArtSabintsev/Zephyr" | ||
s.license = "MIT" | ||
s.authors = { "Arthur Ariel Sabintsev" => "[email protected]"} | ||
s.description = <<-DESC | ||
Effortlessly synchronize UserDefaults over iCloud. | ||
Effortlessly synchronize your UserDefaults over iCloud. | ||
DESC | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '3.0' | ||
# Deployment | ||
s.ios.deployment_target = '9.0' | ||
s.tvos.deployment_target = '9.0' | ||
|
||
s.homepage = "https://github.com/ArtSabintsev/Zephyr" | ||
s.license = "MIT" | ||
s.authors = { "Arthur Ariel Sabintsev" => "[email protected]"} | ||
s.platform = :ios, "8.0" | ||
# Sources | ||
s.source = { :git => "https://github.com/ArtSabintsev/Zephyr.git", :tag => s.version.to_s } | ||
s.source_files = 'Sources/*.swift' | ||
s.requires_arc = true | ||
|