mirror of
https://github.com/SwiftyJSON/Alamofire-SwiftyJSON.git
synced 2026-01-12 22:31:08 +08:00
17 lines
634 B
Ruby
17 lines
634 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Alamofire-SwiftyJSON"
|
|
s.version = "1.1.0"
|
|
s.summary = "Alamofire extension for serialize NSData to SwiftyJSON "
|
|
s.homepage = "https://github.com/SwiftyJSON/Alamofire-SwiftyJSON"
|
|
s.license = { :type => "MIT" }
|
|
s.authors = { "tangplin" => "tangplin@gmail.com" }
|
|
|
|
s.requires_arc = true
|
|
s.osx.deployment_target = "10.9"
|
|
s.ios.deployment_target = "8.0"
|
|
s.source = { :git => "https://github.com/SwiftyJSON/Alamofire-SwiftyJSON.git", :tag => "1.1.0"}
|
|
s.source_files = "Source/*.swift"
|
|
s.dependency 'Alamofire', '1.3'
|
|
s.dependency 'SwiftyJSON', '2.2.0'
|
|
end
|