Is there a way to create the associated .ruby-version and .ruby-gemset files when creating a new gemset?
.ruby-version
.ruby-gemset
With older versions of rvm, one could
According to the official RVM docs you can use this:
echo 1.9.3 > .ruby-version
Or you can use this:
rvm --ruby-version use 1.9.3@my_app
The second form will create both .ruby-version and .ruby-gemset.