...without uninstalling the latest version.
I'm working on a project that uses Bundler 1.10, but I use Bundler 1.11 for all my other projects. Since this project is on 1.10, whenever I run any bundle
commands, my Gemfile.lock
changes due to the different formatting introduced by Bundler 1.11.
The only solution I've found so far is running all my commands like so:
bundle _1.10.6_ [command]
(from this answer here: https://stackoverflow.com/a/4373478/1612744)
Is there a better way? I'm using rbenv, not rvm.