Podspecs/HTTPTransport/5.0/HTTPTransport.podspec

15 lines
691 B
Ruby

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