From 016a1724ba63f001943ee9d7253a0e8a880d8fa4 Mon Sep 17 00:00:00 2001 From: Sascha Hoellger Date: Sat, 30 Jun 2012 10:42:03 +0200 Subject: [PATCH] Removes OS X suport. There seems to be a problem with the arc detection of the library for OS X. So just support iOS for now. --- SVHTTPRequest/0.0.1/SVHTTPRequest.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SVHTTPRequest/0.0.1/SVHTTPRequest.podspec b/SVHTTPRequest/0.0.1/SVHTTPRequest.podspec index 769c0a81..79fee45a 100644 --- a/SVHTTPRequest/0.0.1/SVHTTPRequest.podspec +++ b/SVHTTPRequest/0.0.1/SVHTTPRequest.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.license = 'MIT' s.author = { "Sam Vermette" => "hello@samvermette.com" } s.source = { :git => "https://github.com/samvermette/SVHTTPRequest.git", :commit => "31ec15badeefe171beb605962b03ffe5fa2e5f7b" } - s.ios.deployment_target = '5.0' - s.osx.deployment_target = '10.7' + s.requires_arc = true + s.platform = :ios, '5.0' s.source_files = 'SVHTTPRequest/*.{h,m}' end