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
In view helper URI::escape has been used, which leads to error "undefined method `escape' for URI:Module".
source = URI::escape(source)
This has been removed: ruby/uri@61c6a47 More references also here: ruby/uri#14
The gem works with monkey patching the:
with
source = CGI.escape(source)
Could there be a possibility for a fix?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In view helper URI::escape has been used, which leads to error "undefined method `escape' for URI:Module".
This has been removed: ruby/uri@61c6a47
More references also here:
ruby/uri#14
The gem works with monkey patching the:
with
Could there be a possibility for a fix?
The text was updated successfully, but these errors were encountered: