From 27fafa53ee4f8cc8d061f4a10078ee6e9501f8c3 Mon Sep 17 00:00:00 2001 From: Eloy Duran Date: Mon, 12 Sep 2011 10:49:04 +0200 Subject: [PATCH] Add JSONKit and fix ASIWebPageRequest which should depend on ASIHTTPRequest. --- .gitignore | 2 ++ ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec | 1 + ASIHTTPRequest/1.8/ASIHTTPRequest.podspec | 1 + ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec | 3 ++- ASIWebPageRequest/1.8/ASIWebPageRequest.podspec | 3 ++- JSONKit/1.4/JSONKit.podspec | 11 +++++++++++ 6 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 JSONKit/1.4/JSONKit.podspec diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..38193138 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.swp +*.swo diff --git a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec index 20fc43fe..2d3dc6cf 100644 --- a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec +++ b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec @@ -22,6 +22,7 @@ Pod::Spec.new do source_files 'Classes' + # TODO actually I think one or some of these are for Reachability frameworks 'System/Library/Frameworks/CFNetwork.framework', 'System/Library/Frameworks/SystemConfiguration.framework', 'System/Library/Frameworks/MobileCoreServices.framework', diff --git a/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec b/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec index 00946f55..8eadc69f 100644 --- a/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec +++ b/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec @@ -22,6 +22,7 @@ Pod::Spec.new do source_files 'Classes' + # TODO actually I think one or some of these are for Reachability frameworks 'System/Library/Frameworks/CFNetwork.framework', 'System/Library/Frameworks/SystemConfiguration.framework', 'System/Library/Frameworks/MobileCoreServices.framework', diff --git a/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec b/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec index 148b3665..3e133d17 100644 --- a/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec +++ b/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec @@ -1,7 +1,6 @@ Pod::Spec.new do name 'ASIWebPageRequest' version '1.8.1' - part_of 'ASIHTTPRequest', '1.8.1' homepage 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' author 'Ben Copsey' => 'ben@allseeing-i.com' @@ -10,6 +9,8 @@ Pod::Spec.new do complete webpages, including external resources like images and stylesheets. } + part_of 'ASIHTTPRequest', '1.8.1' + dependency 'ASIHTTPRequest', '1.8.1' source_files 'Classes/ASIWebPageRequest/*.m', 'Classes/ASIWebPageRequest/*.h' frameworks 'usr/lib/libxml2.2.7.3.dylib' diff --git a/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec b/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec index 9f7c0d59..afcd4dd2 100644 --- a/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec +++ b/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec @@ -1,7 +1,6 @@ Pod::Spec.new do name 'ASIWebPageRequest' version '1.8' - part_of 'ASIHTTPRequest', '1.8' homepage 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' author 'Ben Copsey' => 'ben@allseeing-i.com' @@ -10,6 +9,8 @@ Pod::Spec.new do complete webpages, including external resources like images and stylesheets. } + part_of 'ASIHTTPRequest', '1.8' + dependency 'ASIHTTPRequest', '1.8' source_files 'Classes/ASIWebPageRequest/*.m', 'Classes/ASIWebPageRequest/*.h' frameworks 'usr/lib/libxml2.2.7.3.dylib' diff --git a/JSONKit/1.4/JSONKit.podspec b/JSONKit/1.4/JSONKit.podspec new file mode 100644 index 00000000..1a8a0b23 --- /dev/null +++ b/JSONKit/1.4/JSONKit.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do + name 'JSONKit' + version '1.4' + summary 'A Very High Performance Objective-C JSON Library.' + homepage 'https://github.com/johnezang/JSONKit' + author 'John Engelhart' + source :git => 'https://github.com/johnezang/JSONKit.git', + :commit => 'v1.4' + + source_files 'JSONKit.*' +end