16 lines
808 B
Ruby
16 lines
808 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Seriously'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'The Objective-C HTTP library that Apple should have created, seriously.'
|
|
s.homepage = 'https://github.com/probablycorey/seriously'
|
|
s.author = { 'Corey Johnson' => 'cj@github.com' }
|
|
|
|
s.source = { :git => 'https://github.com/probablycorey/seriously.git', :commit => "a5280eac2dd38b318332e794d6e5b45b764c7571" }
|
|
|
|
s.description = 'The iPhone needs a better way to make HTTP requests, specifically calls to REST web services. Seriously mixes Blocks with NSURLConnection & NSOperationQueue to do just that. It also will automatically parse the JSON response into a dictionary if the response headers are set correctly.'
|
|
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'src/**/*.{h,m,c}'
|
|
end
|