When I tried to check the routing with rails, I got the following error.
rake routes
rake aborted!
Gem::LoadError: You have already activated rake 13.0.3, but your Gemfile requires rake 12.3.3.
Prepending `bundle exec` to your command may solve this.
Hmm. What is this? .. .. When I looked it up, it seems that bundle exec should be added before rake routes.
(Thank you for your reference.) https://qiita.com/ARTS_papa/items/41e2868273dd344cd317
bundle exec rake routes
I tried it with and succeeded. I'm glad I solved it.
Recommended Posts