You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are very detailed directions in the case that more information is needed or the link doesn't work:
1] Go to the project's folder and open Gemfile (not lock) in your text editor
2] Comment out (Add a # before the text) or delete the line stating gem rake
3] Add the line gem 'rake', '< 11.0'
4] Open your terminal or command line with the current directory being inside the project's folder
5] Run bundle install
6] Run grep rake Gemfile.lock
Now when you cd into a specific excercise and run rake, it should work (you'll receive output from a failed test)
The text was updated successfully, but these errors were encountered:
The solution is found here: http://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
Here are very detailed directions in the case that more information is needed or the link doesn't work:
1] Go to the project's folder and open Gemfile (not lock) in your text editor
2] Comment out (Add a
#
before the text) or delete the line statinggem rake
3] Add the line
gem 'rake', '< 11.0'
4] Open your terminal or command line with the current directory being inside the project's folder
5] Run
bundle install
6] Run
grep rake Gemfile.lock
Now when you cd into a specific excercise and run
rake
, it should work (you'll receive output from a failed test)The text was updated successfully, but these errors were encountered: