From 29a8ccabcce1c6a60dbce6b92f4a414cad3e4d16 Mon Sep 17 00:00:00 2001 From: Stefano Date: Tue, 22 Jan 2013 15:58:08 -0800 Subject: [PATCH] added AFJSONPRequestOperation --- .../1.0.0/AFCSVRequestOperation.podspec | 2 +- .../1.0.0/AFJSONPRequestOperation.podspec | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 AFJSONPRequestOperation/1.0.0/AFJSONPRequestOperation.podspec diff --git a/AFCSVRequestOperation/1.0.0/AFCSVRequestOperation.podspec b/AFCSVRequestOperation/1.0.0/AFCSVRequestOperation.podspec index 5e383a54ec7083..a7364c4ff86d94 100644 --- a/AFCSVRequestOperation/1.0.0/AFCSVRequestOperation.podspec +++ b/AFCSVRequestOperation/1.0.0/AFCSVRequestOperation.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'AFCSVRequestOperation' s.version = '1.0.0' - s.homepage = 'https://github.com/AFNetworking/AFKissXMLRequestOperation' + s.homepage = 'https://github.com/acerbetti/AFCSVRequestOperation' s.author = { 'Stefano Acerbetti' => 'acerbetti@gmail.com' } s.license = { :type => 'MIT', :file => 'LICENSE' } s.summary = 'An extension for AFNetworking that provides an interface to parse CSV using CHCSVParser.' diff --git a/AFJSONPRequestOperation/1.0.0/AFJSONPRequestOperation.podspec b/AFJSONPRequestOperation/1.0.0/AFJSONPRequestOperation.podspec new file mode 100644 index 00000000000000..7a1a13c5795e0e --- /dev/null +++ b/AFJSONPRequestOperation/1.0.0/AFJSONPRequestOperation.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'AFJSONPRequestOperation' + s.version = '1.0.0' + s.homepage = 'https://github.com/acerbetti/AFJSONPRequestOperation' + s.author = { 'Stefano Acerbetti' => 'acerbetti@gmail.com' } + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.summary = 'An extension for AFNetworking that provides an interface to parse CSV using CHCSVParser.' + s.source = { :git => 'https://github.com/acerbetti/AFJSONPRequestOperation.git', :tag => 'v1.0.0' } + s.source_files = 'AFJSONPRequestOperation.{h,m}' + s.dependency 'AFNetworking' + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.requires_arc = true +end