From 4cc1bc32fb34f516669c10595a9fadd024201c51 Mon Sep 17 00:00:00 2001 From: Yury Grinenko Date: Mon, 18 Feb 2013 16:38:28 +0200 Subject: [PATCH] updated AFNetworking pod version --- AFNetworking/1.1.1/AFNetworking.podspec | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 AFNetworking/1.1.1/AFNetworking.podspec diff --git a/AFNetworking/1.1.1/AFNetworking.podspec b/AFNetworking/1.1.1/AFNetworking.podspec new file mode 100644 index 00000000..8a51ff5e --- /dev/null +++ b/AFNetworking/1.1.1/AFNetworking.podspec @@ -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 +#if __IPHONE_OS_VERSION_MIN_REQUIRED + #import + #import +#else + #import + #import +#endif +#endif /* __OBJC__*/ +EOS +end