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?