-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Created podspec file
- Loading branch information
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "PMAlertController" | ||
s.version = "1.0.0" | ||
s.summary = "PMAlertController is a great and customizable substitute to UIAlertController" | ||
s.description = <<-DESC | ||
PMAlertController is a small library that allows you to substitute the uncustomizable UIAlertController of Apple, with a beautiful and totally customizable alert that you can use in your iOS app. Enjoy! | ||
DESC | ||
s.homepage = "https://github.com/Codeido/PMAlertController" | ||
s.screenshots = "https://raw.githubusercontent.com/Codeido/PMAlertController/master/preview_pmalertacontroller.jpg" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Paolo Musolino" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/pmusolino" | ||
s.platform = :ios, "9.0" | ||
s.source = { :git => "https://github.com/Codeido/PMAlertController.git", :tag => "1.0.0" } | ||
s.source_files = "Library/**/*" | ||
s.resource_bundles = { | ||
'PMAlertController' => ['Library/Resources/**/*.png'] | ||
} | ||
s.framework = "UIKit" | ||
s.requires_arc = true | ||
end |
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