[Add] HTTPTransport (5.0)

This commit is contained in:
Ivan Smolin 2020-11-25 17:05:11 +03:00
parent 255c69077b
commit 47656e4723
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = "HTTPTransport"
s.version = "5.0"
s.summary = "RedMadRobot HTTP transport library"
s.description = "Based on Alamofire. Implements synchronous transport"
s.homepage = "https://github.com/petropavel13/http-transport"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jeorge Taflanidi" => "et@redmadrobot.com" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/petropavel13/http-transport.git", :tag => s.version, :branch => "master" }
s.source_files = "Source/HTTPTransport/HTTPTransport/Classes/**/*"
s.requires_arc = true
s.dependency "Alamofire", '~> 5'
end