Skip to content

Commit

Permalink
Adding podspec for AFNetworking 2.0-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Aug 20, 2013
1 parent 77cbc7d commit 09227f4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions AFNetworking/2.0.0-RC2/AFNetworking.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '2.0.0-RC2'
s.license = 'MIT'
s.summary = 'A delightful iOS and OS X networking framework.'
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
s.authors = { 'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com' }
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '2.0.0-RC2' }
s.requires_arc = true

s.ios.deployment_target = '7.0'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Security', 'CoreGraphics'

s.osx.deployment_target = '10.9'
s.osx.frameworks = 'CoreServices', 'SystemConfiguration', 'Security'

s.subspec 'Core' do |ss|
ss.source_files = 'AFNetworking'
end

s.subspec 'UIKit+AFNetworking' do |ss|
ss.source_files = 'UIKit+AFNetworking'
end
end

0 comments on commit 09227f4

Please sign in to comment.