Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RubyMine - ruby - what does [global] mean in rvm, should i use a global or non-global sdk

When picking from a list of RVM versions, for many versions I see two versions, as in:

RVM:ruby-1.9.2-p180 [global]

plus also:

RVM:ruby-1.9.2-p180

Does it matter which I use?

like image 481
Michael Durrant Avatar asked Nov 14 '22 13:11

Michael Durrant


1 Answers

Global in this case applies to gemsets. All gemsets under the installed 1.9.2-p180 version will be able to access gems installed to 1.9.2-p180@global.

like image 111
TreyE Avatar answered Dec 05 '22 04:12

TreyE