I had two versions of bundler installed locally 1.15.2 and 1.16.1. I had pushed my code and soon realized that the gemfile.lock BUNDLED WITH, updated the version to 1.16.1 and that is not what we want.
I then removed 1.16.1 locally and now my default is 1.15.2 which is exactly what I want and ran bundle install in the checked out branch hoping that it would update ( downgrade ) the BUNLED WITH to 1.15.2 but git diff and searching the gemfile.lock shows that nothing has changed and it still says 1.16.1.
Should I go in and manually change it which I know is never a good idea to manually edit the Gemfile.lock. Or is there a command to run that will do what I intend it to do.
Thanks
Process: install the gem generically, looking up your target version on rubygems.org, then update and version your Gemfile.
the install command is in the right-hand column. then you can:
gem install gem_name -v 1.5.4and see what results of dependencies et al. respecify the gem version in your gemfile (thelockfile is not meant to be edited). Thenbundle installfor your app to be secure.