3

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.

gnoll110
  • 332
  • 1
  • 4
  • 11

1 Answers1

4

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).

mpapis
  • 52,729
  • 14
  • 121
  • 158
  • Sadly it didn't work. Appended the flag to the .rvmrc file and ran the conversion. No info message and no change in generated .ruby-version & .ruby-gemset files. :( Running rvm version 1.20.4 – gnoll110 May 13 '13 at 04:12
  • open a bug report for RVM with all the details - this should have worked => https://github.com/wayneeseguin/rvm/issues – mpapis May 13 '13 at 14:58