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
The string mutation methods are throwing warnings in Ruby 3.4.
The text was updated successfully, but these errors were encountered:
Running into this as well. Looks like this could be easily fixed by having strip_string call value.dup before mutating it further.
strip_string
value.dup
@rmm5t what do you think? I'll create a PR.
Sorry, something went wrong.
Call .dup on string before modifying it in-place.
33c28f6
Prevents Ruby 3.4 frozen string warnings. Fixes rmm5t#76.
Successfully merging a pull request may close this issue.
The string mutation methods are throwing warnings in Ruby 3.4.
The text was updated successfully, but these errors were encountered: