Actions
Bug #15586
closedRequiring `bundler/setup` gets wrong version
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.6.1p33 (2019-01-30 revision 66950) [x86_64-darwin18]
Description
The statement 'require "bundler/setup"' always loads the version that ships with ruby (Bundler 1.17.2 as of Ruby 2.6.1), even if a newer version of Bundler is installed via RubyGems. On the other hand, requiring plain "bundler" gets the gem-installed version.
Demo:
$ ruby -rbundler -e 'puts Bundler::VERSION'
2.0.1
$ ruby -rbundler/setup -e 'puts Bundler::VERSION'
1.17.2
This breaks pretty much all my bundled applications, which start by requiring bundler/setup
, which fails when the Gemfile.lock was created by Bundler 2.x and the loaded Bundler is 1.x.
Actions
Like0
Like0Like0