For my different Rails folders, I would like to have rvm automatically load the correct gemset when running anything from \'bundle install\' to doing my \'autotest\' or rail
Create a .rvmrc file in your rails directory, and rvm will automatically load it. An example .rvmrc that loads Ruby 1.9.2 and a gemset named "rails3":
.rvmrc
rvm 1.9.2@rails3
You can do a lot more too, described in detail here: https://rvm.io/workflow/rvmrc/