mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
14 lines
467 B
Plaintext
14 lines
467 B
Plaintext
|
Pod::Spec.new do |s|
|
||
|
s.name = 'TestClient'
|
||
|
s.ios.deployment_target = '9.0'
|
||
|
s.osx.deployment_target = '10.11'
|
||
|
s.version = '0.0.1'
|
||
|
s.source = { :git => 'git@github.com:swagger-api/swagger-mustache.git', :tag => 'v1.0.0' }
|
||
|
s.authors = ''
|
||
|
s.license = 'Proprietary'
|
||
|
s.homepage = 'https://github.com/swagger-api/swagger-codegen'
|
||
|
s.summary = 'TestClient'
|
||
|
s.source_files = 'TestClient/Classes/Swaggers/**/*.swift'
|
||
|
s.dependency 'Alamofire', '~> 4.5'
|
||
|
end
|