updated AFNetworking pod version

This commit is contained in:
Yury Grinenko
2013-02-18 16:38:28 +02:00
parent dbee68de9f
commit 4cc1bc32fb
+30
View File
@@ -0,0 +1,30 @@
Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '1.1.1'
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', :commit => 'cb3744a808a2c7b9ee4a9c48cf52b5ca6d991142' }
s.source_files = 'AFNetworking'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration'
s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreServices', 'SystemConfiguration'
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
#endif /* __OBJC__*/
EOS
end