When first started, I installed Rails with rbenv and, through time, created a few apps. I have not had to touch rbenv, never had a problem, yet never had a chance to get to know it.
I recently decided to run through the "Learn Ruby on Rails" tutorial by Daniel Kehoe. In his chapters dealing with installation, he has us download RVM with a project-specific gemset using the following command:
$ rvm use ruby-2.1.1@learn-rails --create
$ gem install rails
Will I still be able to download the specific gemset using rbenv instead? If so, what is the command and how would I go about this?
On a side note, are there any great beginner tutorials for using rbenv?