Skip to content

Commit

Permalink
update option value in ruby generator
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 committed Nov 27, 2021
1 parent b7e7c13 commit 3b5345e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,18 +141,18 @@ public RubyClientCodegen() {
defaultValue("unlicense"));

cliOptions.add(new CliOption(GEM_REQUIRED_RUBY_VERSION, "gem required Ruby version. ").
defaultValue(">= 1.9"));
defaultValue(">= 2.4"));

cliOptions.add(new CliOption(GEM_HOMEPAGE, "gem homepage. ").
defaultValue("http://org.openapitools"));
defaultValue("https://openapi-generator.tech"));

cliOptions.add(new CliOption(GEM_SUMMARY, "gem summary. ").
defaultValue("A ruby wrapper for the REST APIs"));

cliOptions.add(new CliOption(GEM_DESCRIPTION, "gem description. ").
defaultValue("This gem maps to a REST API"));

cliOptions.add(new CliOption(GEM_AUTHOR, "gem author (only one is supported)."));
cliOptions.add(new CliOption(GEM_AUTHOR, "gem author (only one is supported).").defaultValue("OpenAPI-Generator"));

cliOptions.add(new CliOption(GEM_AUTHOR_EMAIL, "gem author email (only one is supported)."));

Expand Down

0 comments on commit 3b5345e

Please sign in to comment.