forked from loafle/openapi-generator-original
* fix python flask NPE with oas3 * update perl default value, fix example value * update android sample, fix example value * restore x-swagger-router-controller for nodejs server generator * update default value for bash client, fix example value, invalid tag * update default value for objc * update objc pestore core data
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
#
|
|
# Be sure to run `pod lib lint OpenAPIClient.podspec' to ensure this is a
|
|
# valid spec and remove all comments before submitting the spec.
|
|
#
|
|
# Any lines starting with a # are optional, but encouraged
|
|
#
|
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
|
|
#
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "OpenAPIClient"
|
|
s.version = "1.0.0"
|
|
|
|
s.summary = "OpenAPI Petstore"
|
|
s.description = <<-DESC
|
|
This is a sample server Petstore server. For this sample, you can use the api key \"special-key\" to test the authorization filters
|
|
DESC
|
|
|
|
s.platform = :ios, '7.0'
|
|
s.requires_arc = true
|
|
|
|
s.framework = 'SystemConfiguration'
|
|
|
|
s.homepage = "https://github.com/openapitools/openapi-generator"
|
|
s.license = "Proprietary"
|
|
s.source = { :git => "https://github.com/openapitools/openapi-generator.git", :tag => "#{s.version}" }
|
|
s.author = { "OpenAPI" => "team@openapitools.org" }
|
|
|
|
s.source_files = 'OpenAPIClient/**/*.{m,h}'
|
|
s.public_header_files = 'OpenAPIClient/**/*.h'
|
|
|
|
|
|
s.dependency 'AFNetworking', '~> 3'
|
|
s.dependency 'JSONModel', '~> 1.2'
|
|
s.dependency 'ISO8601', '~> 0.6'
|
|
end
|
|
|