16 lines
853 B
Ruby
16 lines
853 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MTPocket"
|
|
s.version = "0.8.2"
|
|
s.summary = "A Cocoa web request library that doesn't suck."
|
|
s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects."
|
|
s.homepage = "https://github.com/mysterioustrousers/MTPocket"
|
|
s.license = 'BSD'
|
|
s.author = { "Adam Kirk" => "atomkirk@gmail.com" }
|
|
s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.8.2" }
|
|
s.source_files = 'MTPocket/*.{h,m}'
|
|
s.public_header_files = 'MTPocket/MTPocket.h', 'MTPocket/MTPocketRequest.h', 'MTPocket/MTPocketAsyncRequest.h', 'MTPocket/MTPocketResponse.h'
|
|
s.dependency 'XMLDictionary', '~> 2.0.0'
|
|
s.dependency 'MTJSONUtils', '~> 0.1.0'
|
|
s.dependency 'Base64'
|
|
end
|