-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Bundle bigdecimal
and base64
#69
Comments
Left a similar comment in HTTParty just now in an open issue about it Other gems have resolved adding the gems to the gemspec, in this case base64 and bigdecimal. here an example: https://github.com/thinreports/thinreports-generator/pull/134/files |
Yes, as have I - but this is a stopgap measure. You should not need to bundle someone else's dependencies. |
Fixed in #67. I'll be pushing out a new gem release shortly. |
Fyi, this somehow broke one of our Redmine plugins which still uses httparty in version 0.14 running in our internal Redmine instance:
As httparty imports multi_xml |
@sibbl What error do you get when you try to |
Ruby 3.3 started issuing warnings about using
base64
andbigdecimal
without having them in the bundle of the gems.Reproduction
Output
For me, the bigger issue is that this warning cascades down, so currently all my gems that use HTTParty (which uses multi_xml) are showing this problem and require me to add runtime dependencies that are not mine to bundle.
The text was updated successfully, but these errors were encountered: