-
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.
- Loading branch information
1 parent
93e16b7
commit 51c4d3c
Showing
1 changed file
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "CWPopup" | ||
s.version = "1.0.1" | ||
s.summary = "A category on UIViewController to present a popup view controller." | ||
s.description = " CWPopup adds a category on UIViewController to present a popup view controller. It offers an animated and non-animated presentation of the popup, similarly to presenting a modal controller or pushing a view controller." | ||
s.homepage = "http://github.com/cezarywojcik/CWPopup" | ||
s.screenshots = "https://raw.github.com/cezarywojcik/CWPopup/master/screenshot.png" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Cezary Wojcik" => "[email protected]" } | ||
s.platform = :ios, '4.3' | ||
s.source = { :git => "https://github.com/cezarywojcik/CWPopup.git", | ||
:tag => s.version.to_s } | ||
s.source_files = 'CWPopup' | ||
s.requires_arc = true | ||
end |