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
We just noticed that the functionality added in #1418 isn't working in our Rails app (which uses Rake).
The culprit appears to be this line
When running debugger:
(ruby) defined?(::Rake) nil
However when rake is added to our Gemfile the check works.
Perhaps it would be better to execute the code without Rake?
The text was updated successfully, but these errors were encountered:
railties depends on rake and it should load Rake::Task when we call Rails.application.load_tasks.
railties
rake
Rake::Task
Rails.application.load_tasks
I don't see how it's not defined for you, maybe above will help with debugging.
We are executing a Rake task so I think using Rake is the way to go.
Rake
Sorry, something went wrong.
No branches or pull requests
We just noticed that the functionality added in #1418 isn't working in our Rails app (which uses Rake).
The culprit appears to be this line
When running debugger:
However when rake is added to our Gemfile the check works.
Perhaps it would be better to execute the code without Rake?
The text was updated successfully, but these errors were encountered: