mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
2be2ee080b
* Fix build error in Xcode 9 beta 3, as .compact is no longer defined * Add test schema for Swift 4 and associated script and config files * Add test app for swift4Test.json schema * Make integer, Integer, int, and Int32 types map to Swift Int type instead of Int32 type * Add CodingKeys to model template, which allows us to serialize/deserialize variable names that are different than property names * Make updates to Swift 4 test schema * Fixes for unit test app for swift4Test.json Swift 4 test schema
14 lines
467 B
Ruby
14 lines
467 B
Ruby
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
|