I want to create my gemfile.lock
file with bundler version 2.3.25
But when I try to bundle install
it always is bundled with 2.4.5
So I uninstall bundler version 2.4.5
and it STILL bundles with that version, and then throws errors when I rails s
because version 2.4.5
isn't there.
When I run gem list bundler
right now I get: bundler (2.4.5, default: 2.3.25)
I've gone as far as to delete the file from
\\wsl$\Ubuntu\home\me\.rbenv\versions\2.7.0\lib\ruby\gems\2.7.0\gems\bundler-2.4.5
then, I delete the gemfile.lock
file and bundle install
and low and behold its bundled with 2.4.5
..
I've tried gem uninstall bundler
and no luck..
I've tried all of the following methods and no luck Here or Here
How can I either force Ruby to use the default version of Bundler, or REALLY get rid of the version I don't want?