forked from loafle/openapi-generator-original
* Add a swift4 client generator * Updates per review comments: - Changed Alamofire dependency from 4.0 to 4.5 - Added "Codable", "Encodable", and "Decodable" to list of reserved words in generator - Ran "pod update" in default, promisekit, and rxswift samples test projects
19 lines
442 B
Ruby
19 lines
442 B
Ruby
use_frameworks!
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
target 'SwaggerClient' do
|
|
pod "PetstoreClient", :path => "../"
|
|
|
|
target 'SwaggerClientTests' do
|
|
inherit! :search_paths
|
|
end
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |configuration|
|
|
configuration.build_settings['SWIFT_VERSION'] = "3.0"
|
|
end
|
|
end
|
|
end
|