forked from cezarywojcik/CWPopup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CWPopup.podspec
16 lines (16 loc) · 916 Bytes
/
CWPopup.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "CWPopup"
s.version = "1.2.6"
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
s.compiler_flags = '-fmodules'
end