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
Hi
When I do:
passenger-config restart-app
I have the error: cannot load such file -- rexml/document This happens with ruby 3.1.0. It's ok with ruby 2.6.0.
The raison is REXML is no longer in the Ruby Starting Library starting in ruby 3.0.0. I suggest adding this to Gemfile:
if (Gem.available?("rexml")) gem "rexml" end
The text was updated successfully, but these errors were encountered:
That doesn't work: [!] There was an error parsing 'Gemfile': undefined method 'available?' for Gem:Module. Bundler cannot continue.
[!] There was an error parsing 'Gemfile': undefined method 'available?' for Gem:Module. Bundler cannot continue.
Sorry, something went wrong.
should be fixed in 6.0.14
No branches or pull requests
Hi
When I do:
I have the error: cannot load such file -- rexml/document
This happens with ruby 3.1.0. It's ok with ruby 2.6.0.
The raison is REXML is no longer in the Ruby Starting Library starting in ruby 3.0.0.
I suggest adding this to Gemfile:
The text was updated successfully, but these errors were encountered: