forked from loafle/openapi-generator-original
* add pod file for swift3 * skip pod install * avoid pod install in swift3 petstore (promisekit,rxswift) * use https instead of http for cocoapod spec * avoid timeout in swift3 test
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
|