From 6e6701c5b22ff0bf7719ef82bb96ab8ae0b8b453 Mon Sep 17 00:00:00 2001 From: Steve Streza Date: Wed, 6 Mar 2013 19:01:43 -0800 Subject: [PATCH] Updated PocketAPI to 1.0.2 --- PocketAPI/1.0.2/PocketAPI.podspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 PocketAPI/1.0.2/PocketAPI.podspec diff --git a/PocketAPI/1.0.2/PocketAPI.podspec b/PocketAPI/1.0.2/PocketAPI.podspec new file mode 100644 index 00000000..f69a75a7 --- /dev/null +++ b/PocketAPI/1.0.2/PocketAPI.podspec @@ -0,0 +1,29 @@ +Pod::Spec.new do |s| + s.name = "PocketAPI" + s.version = "1.0.2" + s.summary = "Objective-C SDK for authenticating and making API calls to the Pocket API." + s.description = <<-DESC + The Pocket SDK is the fastest way to add Pocket integration to any iOS or Mac + application. Adding the Pocket SDK to your app is incredibly easy. With a few + lines of code, your app can quickly add support for saving URLs to users' + Pocket lists. + DESC + s.homepage = "http://getpocket.com/developer/" + + s.license = 'MIT' + + s.authors = { "Steve Streza" => "steve@getpocket.com", "James Yopp" => "james@getpocket.com", "Nate Weiner" => "nate@getpocket.com" } + s.source = { :git => "https://github.com/Pocket/Pocket-ObjC-SDK.git", :tag => "sdk/1.0.2" } + + s.ios.deployment_target = '3.0' + s.osx.deployment_target = '10.6' + + s.source_files = 'SDK/**/*.{h,m}' + + s.public_header_files = 'SDK/**/PocketAPI*.h' + + s.frameworks = 'Foundation', 'Security' + + s.requires_arc = false + +end