oneclick installer -- which rails version?

I'm trying to match my development environment to the host which is unfortunately significantly out-of-date (thanks, GoDaddy!)

I can't find anywhere the list of which Rails versions are included in the oneclick installers for Windows. Can anyone point me to where this information resides? It's not in the release notes (you'd think ... !)

The one click installer doesn’t include Rails. It’s the RUBY one click installer, and so Rails is not included. There are other projects out there that do bundle a complete stack… but generally it’s usually as easy as

  1. install one click ruby installer
  2. open a command prompt
  3. gem update --system
  4. gem install rails -v=2.0.2 (or whatever version you want… leave -v= off if you want the very latest)