Last active
December 19, 2015 22:19
-
-
Save shsteven/6026641 to your computer and use it in GitHub Desktop.
DCModelSegue Podspec with iOS5 Support
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
Pod::Spec.new do |s| | |
s.name = "DCModalSegue" | |
s.version = "0.0.2" | |
s.summary = "A custom segue which makes a 'pushed back' modal presenting animation." | |
s.homepage = "https://github.com/zetachang/DCModalSegue" | |
s.license = 'MIT' | |
s.authors = {"David Chang" => "[email protected]"} | |
s.source = { :git => "https://github.com/zetachang/DCModalSegue.git", :tag => "0.0.2" } | |
s.platform = :ios, '5.0' | |
s.source_files = 'DCModalSegue/*.{h,m}' | |
s.frameworks = "QuartzCore" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment