I ran bundle update on my rails app. I'm not getting the following error and can't figure out what i need to change:
59$ spork Using RSpec, Unknown
Loading Spork.prefork block...
You have already activated spork 1.0.0rc2, but your Gemfile requires spork 1.0.0rc3. Using bundle exec may solve this. (Gem::LoadError)
It runs ok if i run it with bundle exec, but i want to fix the root cause so that I don't have to use bundle exec. Any help would be appreciated.
I didn't figure out why the rc2 vs. rc3 issues was present, but in general, after reading a few sites i think bundle exec was the way to go. I ended up using the following setup to get a development and test environment running smoothly for TDD. As a result, i'm not facing the issue, though I still don't what caused the issue.
http://blog.crowdint.com/2012/03/01/rails-tdd-environment-setup-with-guard-and-foreman.html