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
Suppose I am creating gemset for my rails app whose name is tptapp then we can do it in following way.
rvm use 2.2.2@tptapp --create
here tptapp is name of gemset, 2.2.2 is Ruby version.