I'm on OS X (if that matters).
If I install Ruby using RVM, it will install the Bundler on @global gemset by default
Say I want a different version of the binder. I suggested that all I need to do is execute
gem install bundler
However, this will set the default binding to gemset, and RVM will not set PATH for it.
As a result, if I type bundler , it will still run the package that was installed with Ruby in @global
Two questions:
- How can I install bundler in gglset @global.
- Is this the correct template for installing bundler in gglset @global or am I missing something
source share