Last active
January 1, 2016 06:19
-
-
Save wangsha/8104342 to your computer and use it in GitHub Desktop.
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 = "Mantle" | |
s.version = "0.3.3" | |
s.summary = "Model framework for Cocoa and Cocoa Touch." | |
s.homepage = "https://github.com/MantleFramework/Mantle" | |
s.license = 'MIT' | |
s.author = { "GitHub" => "[email protected]" } | |
s.source = { :git => "https://github.com/MantleFramework/Mantle.git", :commit => "439be82a87e449f26abb2171df1d32c0c15f9e72" } | |
s.source_files = 'Mantle', 'Mantle/extobjc' | |
s.framework = 'Foundation' | |
s.ios.deployment_target = '5.0' # there are usages of __weak | |
s.osx.deployment_target = '10.7' | |
s.requires_arc = true | |
s.dependency 'libextobjc/EXTScope' | |
s.dependency 'libextobjc/EXTKeyPathCoding' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment