Files
JBChartView/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec
T
Eloy Duran 834b09ea99 Fix ASIHTTPRequest specs.
I need to make `pod spec lint` take a list of files...
2011-09-25 10:46:58 -05:00

31 lines
1.3 KiB
Ruby

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' }
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
applications.
It is suitable performing basic HTTP requests and interacting with
REST-based services (GET / POST / PUT / DELETE). The included
ASIFormDataRequest subclass makes it easy to submit POST data and files
using multipart/form-data.
}
s.source_files = 'Classes'
# TODO actually I think one or some of these are for Reachability
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \
'-framework CFNetwork ' \
'-framework MobileCoreServices ' \
'-l z.1' }
s.dependency 'Reachability', '~> 2.0', '>= 2.0.4'
end