to clarify: there\'s only one rails command, which gets installed from the latest Rails gem, which is Rails 3 ATM. However, I\'m required to create a Rails 2.3 app.
rails
The easiest way to do it was:
Create a Gemfile there containing
Gemfile
gem "rails", "2.3.9" gem "sqlite3-ruby", :require => "sqlite3"
Run bundle install
bundle install
bundle exec rails .
You don't even need rvm to do this.