forked from loafle/openapi-generator-original
* This address #3788 * Contains all changes made in #3823 * Also contains many changes made by @ewanmellor, thanks!
18 lines
441 B
Ruby
18 lines
441 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 |