gnoll110
gnoll110

Reputation: 342

Not getting info message after converting rvm from .rvmrc to .ruby-version

I've just run rvm rvmrc to ruby-version on a couple of projects. Looked at the produced files, they match what googling says should be in them (.ruby-version & .ruby-gemset).

When I cd into the project directories, I no longer get the Using /home/user/.rvm/gems/ruby-1.9.3-p392 with gemset projectname info message.

Is there any way for get info message back?

Thanks.

Upvotes: 3

Views: 327

Answers (1)

mpapis
mpapis

Reputation: 53158

it should be enough to run:

echo rvm_use_flag=2 >> ~/.rvmrc

It will tell RVM to display the message always (it does not work for some older project .rvmrc files that did not support it).

Upvotes: 4

Related Questions