Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to switch bundler version?

Tags:

ruby

bundle

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?

like image 689
faara Avatar asked Jan 06 '17 06:01

faara


1 Answers

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

Hope that will help.

like image 108
Kal Avatar answered Oct 07 '22 22:10

Kal