We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixnum
The generated Ruby client is using Fixnum in YARD tag. Fixnum is deprecated in Ruby 2.4.0 and later (and integrated into Integer).
Integer
$ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar version 4.0.0-SNAPSHOT $ git log --oneline -n 1 ee75366051 (HEAD -> master, origin/master, origin/HEAD) Added proxy headers option for urllib3 (#2467)
N/A
See:
openapi-generator/modules/openapi-generator/src/main/resources/ruby-client/api_client.mustache
Line 39 in ee75366
openapi-generator/samples/client/petstore/ruby/lib/petstore/api_client.rb
Line 47 in ee75366
Use Integer instead of Fixnum. Integer is also available in versions below 2.4.0.
The text was updated successfully, but these errors were encountered:
👍 Thanks for opening this issue! 🏷 I have applied any labels matching special text in your issue.
The team will review the labels and make any necessary changes.
Sorry, something went wrong.
use Integer instead of Fixnum in Ruby client (OpenAPITools#2475)
5efaa24
update samples (OpenAPITools#2475)
2d3804b
[Ruby] Use Integer instead of Fixnum in Ruby client (#2475) (#2481)
033ab8a
* use Integer instead of Fixnum in Ruby client (#2475) * update samples (#2475)
No branches or pull requests
Bug Report Checklist
Description
The generated Ruby client is using
Fixnum
in YARD tag.Fixnum
is deprecated in Ruby 2.4.0 and later (and integrated intoInteger
).openapi-generator version
OpenAPI declaration file content or url
N/A
Command line used for generation
N/A
Steps to reproduce
See:
openapi-generator/modules/openapi-generator/src/main/resources/ruby-client/api_client.mustache
Line 39 in ee75366
openapi-generator/samples/client/petstore/ruby/lib/petstore/api_client.rb
Line 47 in ee75366
Related issues/PRs
N/A
Suggest a fix
Use
Integer
instead ofFixnum
.Integer
is also available in versions below 2.4.0.The text was updated successfully, but these errors were encountered: