2

I am trying to keep the gemset of rvm when I create a new terminal tab on Mac OS. I know that I can set a gemset as a default but I don't want to do this.

Maybe someone can help me with this question.

Thanks a lot.

user229044
  • 232,980
  • 40
  • 330
  • 338

1 Answers1

1

Create a ruby-version file with rvm. In terminal, go to project directory and run: rvm --ruby-version use 1.9.3@my_app

Here 1.9.3 is your current ruby version and my_app is gemset name.

Sajan
  • 1,893
  • 2
  • 19
  • 39
  • I have tried this and it's not working. I know how to use and how to create new gemset but I don't know how to keep this value in a project. – Paco Gómez Capón Oct 14 '16 at 13:58