8

I thought the below command would switch bundler installation, but it actually raised an error.

$ bundle _1.10.6_ -v
Could not find command "_1.10.6_".

$ bundle -v
Bundler version 1.13.6

$ gem list | grep bundle
bundler (1.13.6, 1.10.6)

What should I do?

faara
  • 159
  • 1
  • 1
  • 5

1 Answers1

9

To use different gem versions, you could use this pattern: your-gem _version_. For example, bundle _1.10.6_ -v.

Hope that will help.

Kal
  • 162
  • 3
  • this command not switches a gem version - it just setted up a new default one. So you probably will get TWO default bundler versions at the same time. – Unkas Mar 26 '20 at 23:32