views:

80

answers:

2

The error is: You have modified your Gemfile in development but did not check the resulting snapshot (Gemfile.lock) into version control

WHAT VERSION CONTROL? Why/how does Bundle know anything about version control? I just removed a line from my Gemfile. Am I not supposed to do that?

+2  A: 

Did you run bundle update after you changed your Gemfile? Can you please post the output from that, and any output details related to the error message?

jdl
+2  A: 

Do rm -rf .bundle && bundle install from your project root.

glebm
it works sometimes :)
stephenmurdoch