20 lines
620 B
Ruby
20 lines
620 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Snapper"
|
|
s.version = "0.9.5"
|
|
s.summary = "An App.net client library for iOS and Mac."
|
|
|
|
s.homepage = "https://github.com/pilgrimagesoftware/Snapper"
|
|
s.license = 'MIT'
|
|
s.author = { "Paul Schifferer" => "paul@schifferers.net" }
|
|
|
|
s.source = { :git => "https://github.com/pilgrimagesoftware/Snapper.git", :tag => "0.9.5" }
|
|
s.source_files = 'Snapper', 'Snapper/**/*.{h,m}'
|
|
s.framework = 'Foundation'
|
|
|
|
s.ios.deployment_target = '5.0'
|
|
s.osx.deployment_target = '10.7'
|
|
s.requires_arc = true
|
|
|
|
s.dependency 'Mantle', '~> 0.2.2'
|
|
end
|