is using the correct versions?
You update the version string in the Gemfile. Just because you run a
bundle update does not mean that bundler will alter your Gemfile.
Actually that would be a violation of most principles if it did…that
is why it has it’s own lock file so it does not violate reasonable
expectations from developers.
Ok. Something interesting though. I’ve updated the version in the
gemfile. Then when I run bundle update the gem file is then modified
and
version reverts back to old versions.
Ok. Something interesting though. I’ve updated the version in the gemfile.
Then when I run bundle update the gem file is then modified and version
reverts back to old versions.
Gemfile should not be modified when you run bundle update.
Gemfile.lock (which you should not manually modify) will get
automatically updated.
Post Gemfile after you modify it, post the output from bundle update,
and post the Gemfile again if you think it gets modified. Also post
Gemfile.lock after the bundle update.