Update specs to use the better Ruby accessor style.

And remove stub specs for now.
This commit is contained in:
Eloy Duran
2011-09-24 11:20:47 -05:00
parent 0889e331f2
commit fb8da4dbca
19 changed files with 176 additions and 190 deletions
+13 -15
View File
@@ -1,14 +1,12 @@
Pod::Spec.new do
name 'ASIHTTPRequest'
version '1.8.1'
summary 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone'
homepage 'http://allseeing-i.com/ASIHTTPRequest'
author 'Ben Copsey' => 'ben@allseeing-i.com'
source :git => 'https://github.com/pokeb/asi-http-request.git',
#:commit => '404bbfe10c3c46824590f2231c4610c2e35f524d'
:tag => 'v1.8.1'
Pod::Spec.new do |s|
s.name = 'ASIHTTPRequest'
s.version = '1.8.1'
s.summary = 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone'
s.homepage = 'http://allseeing-i.com/ASIHTTPRequest'
s.author = { 'Ben Copsey' => 'ben@allseeing-i.com' }
s.source = { :git => 'https://github.com/pokeb/asi-http-request.git', :tag => 'v1.8.1' }
description %{
s.description = %{
ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that
makes some of the more tedious aspects of communicating with web servers
easier. It is written in Objective-C and works in both Mac OS X and iPhone
@@ -20,13 +18,13 @@ Pod::Spec.new do
using multipart/form-data.
}
source_files 'Classes'
s.source_files = 'Classes'
# TODO actually I think one or some of these are for Reachability
xcconfig 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \
'-framework CFNetwork ' \
'-framework MobileCoreServices ' \
'-l z.1'
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \
'-framework CFNetwork ' \
'-framework MobileCoreServices ' \
'-l z.1' }
dependency 'Reachability', '~> 2.0', '>= 2.0.4'
end