Skip to content

Instantly share code, notes, and snippets.

@jberkel
Last active December 13, 2015 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jberkel/4985324 to your computer and use it in GitHub Desktop.
Save jberkel/4985324 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "Mantle"
s.version = "0.3"
s.summary = "Model framework for Cocoa and Cocoa Touch."
s.homepage = "https://github.com/github/Mantle"
s.license = 'MIT'
s.author = { "GitHub" => "support@github.com" }
s.source = { :git => "https://github.com/github/Mantle.git", :tag => "0.3" }
s.source_files = 'Mantle'
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