AFNetworking/AFNetworking.podspec

33 lines
1.1 KiB
Text
Raw Normal View History

2011-11-11 11:32:21 -06:00
Pod::Spec.new do |s|
2011-11-11 13:09:38 -06:00
s.name = 'AFNetworking'
2013-06-18 09:44:52 -07:00
s.version = '1.3.1'
2012-01-23 09:10:59 -08:00
s.license = 'MIT'
s.summary = 'A delightful iOS and OS X networking framework.'
2011-11-11 13:09:38 -06:00
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
2012-10-14 11:42:59 -07:00
s.authors = { 'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com' }
2013-06-18 09:44:52 -07:00
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.1' }
2011-11-11 13:09:38 -06:00
s.source_files = 'AFNetworking'
s.requires_arc = true
2012-10-05 11:01:59 -07:00
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Security', 'CoreGraphics'
2012-10-05 11:01:59 -07:00
s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreServices', 'SystemConfiguration', 'Security'
2012-10-05 11:01:59 -07:00
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#define _AFNETWORKING_PIN_SSL_CERTIFICATES_
2012-10-05 11:01:59 -07:00
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
2012-10-05 11:01:59 -07:00
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
2012-10-05 11:01:59 -07:00
#endif
EOS
end