I usually use Vim for Rails development and I decided to try out RubyMine to see what it was like. It wasn't half bad, but I decided it was too much bloat.
Now however when I run rake test
it is running tests "through" team city (I don't fully understand what it is doing). At no point do I recall installing teamcity. How can I completely get rid of it? Before my tests were running cleanly with guard and minitest/pride.
Thank you.
I didn't try to understand what's happening but this worked for me:
rm -rf .bundle vendor && bundle
My ~/.bundle/config:
You need to run
spring stop
when you switch from RubyMine back to the command line and vice versa:Just as Saqib Razaq said, the issue is related to spring. As for me, I found useful gem guard-spring so, you could try the following:
bundle exec guard init spring
and that will do the trick