Files
JBChartView/AFNetworking/0.5.1/AFNetworking.podspec
T
Eloy Duran f9377d63bb Make AFNetworking & ASIHTTPRequest work on OSX.
Removed ASIHTTPRequest 1.8, because we have enough test data now.
2011-10-20 23:00:36 +02:00

25 lines
797 B
Ruby

Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '0.5.1'
s.summary = 'A delightful iOS networking library with NSOperations and block-based callbacks'
s.homepage = 'https://github.com/gowalla/AFNetworking'
s.author = { 'Gowalla' => 'live@gowalla.com' }
s.source = { :git => 'https://github.com/gowalla/AFNetworking.git', :tag => '0.5.1' }
if config.ios?
s.source_files = 'AFNetworking' # everything
else
s.source_files = %w{
AFNetworking/AFHTTPRequestOperation.h
AFNetworking/AFJSONRequestOperation.h
AFNetworking/NSData+AFNetworking.h
AFNetworking/NSMutableURLRequest+AFNetworking.h
AFNetworking/NSString+AFNetworking.h
}
end
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load -lz' }
s.dependency 'JSONKit'
end