bin/configs
ruby-features-dynamic-servers.yaml +9 -0
modules/openapi-generator/src/main
java/org/openapitools/codegen/languages
RubyClientCodegen.java +3 -1
resources/ruby-client
api.mustache +1 -0
api_client.mustache +2 -2
api_client_faraday_partial.mustache +1 -1
api_client_typhoeus_partial.mustache +1 -1
configuration.mustache +73 -5
samples
client/petstore
ruby-faraday/lib/petstore
api
another_fake_api.rb +1 -0
default_api.rb +1 -0
fake_api.rb +15 -0
fake_classname_tags123_api.rb +1 -0
pet_api.rb +9 -0
store_api.rb +4 -0
user_api.rb +8 -0
api_client.rb +3 -3
configuration.rb +52 -5
ruby/lib/petstore
api
another_fake_api.rb +1 -0
default_api.rb +1 -0
fake_api.rb +15 -0
fake_classname_tags123_api.rb +1 -0
pet_api.rb +9 -0
store_api.rb +4 -0
user_api.rb +8 -0
api_client.rb +3 -3
configuration.rb +52 -5
openapi3/client/…/dynamic-servers/ruby
.openapi-generator
FILES +20 -0
VERSION +1 -0
docs
UsageApi.md +96 -0
lib
dynamic_servers
api
usage_api.rb +136 -0
api_client.rb +387 -0
api_error.rb +57 -0
configuration.rb +352 -0
version.rb +15 -0
dynamic_servers.rb +40 -0
spec
api
usage_api_spec.rb +57 -0
api_client_spec.rb +226 -0
base_url_spec.rb +71 -0
configuration_spec.rb +42 -0
spec_helper.rb +111 -0
.gitignore +39 -0
.openapi-generator-ignore +23 -0
.rspec +2 -0
.rubocop.yml +148 -0
.travis.yml +11 -0
Gemfile +9 -0
README.md +88 -0
Rakefile +10 -0
dynamic_servers.gemspec +38 -0
git_push.sh +58 -0
+ 9
- 0
+ 3
- 1
@@ -83,7 +83,9 @@ public class RubyClientCodegen extends AbstractRubyCodegen {
@@ -182,6 +182,7 @@ module {{moduleName}}
@@ -177,10 +177,10 @@ module {{moduleName}}
+ 1
- 1
@@ -63,7 +63,7 @@