-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved ccoapods compatibility by modernizing podspec
- Loading branch information
1 parent
edb8906
commit c72eaf2
Showing
2 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,15 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
# Version | ||
s.version = "3.2.3" | ||
s.swift_version = '4.0' | ||
|
||
# Meta | ||
s.name = "Siren" | ||
s.version = "3.2.2" | ||
s.summary = "Notify users that a new version of your iOS app is available, and prompt them with the App Store link." | ||
|
||
s.description = <<-DESC | ||
Notify users when a new version of your iOS app is available, and prompt them with the App Store link. | ||
DESC | ||
|
||
s.homepage = "https://github.com/ArtSabintsev/Siren" | ||
s.license = "MIT" | ||
s.authors = { "Arthur Ariel Sabintsev" => "[email protected]", "Aaron Brager" => "[email protected]" } | ||
s.description = <<-DESC | ||
Notify your users when a new version of your iOS app is available, and prompt them with the App Store link. | ||
DESC | ||
|
||
# Compatibility & Sources | ||
s.platform = :ios, "8.0" | ||
s.source = { :git => "https://github.com/ArtSabintsev/Siren.git", :tag => s.version.to_s } | ||
s.source_files = 'Sources/*.swift' | ||
|