Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use bundle exec rake on RubyMine?

i found this post in stack overflow rubymine error: You have already activated rake 10.0.3, but your Gemfile requires rake 0.9.6. Using bundle exec may solve this

that offesr two possible solutions:

  • ignoring global gem path in the project settings
  • uninstalling the problematic gem

So far none of these solutions worked for me: I tried ignoring the global gem path, but I keep getting the same error message. With regards to uninstalling the gem, well, that's not possible as I have other projects depending on the newer rake version, which I don't want to mess up with.

What would be a way to force RubyMine into using bundle exec before rake tasks?

like image 943
gaudi_br Avatar asked Nov 17 '13 21:11

gaudi_br


Video Answer


1 Answers

Go to Run -> Edit Configurations, select the BUNDLER tab, and click the checkbox "Run the script in context of the bundle (bundle exec)"

like image 69
Renews Avatar answered Sep 26 '22 01:09

Renews