Installing a Ruby on Rails development environment on Windows

I'm going to keep it brief as there are some good guides out there that can fill you in with the details. I had a ruby on rails app up and running within 15 minutes (and spent a bit of time noting things down and writing this blog post).
  1. Download and install the RubyInstaller for Windows
  2. Install the DevKit using these instructions and this download
  3. Once Ruby is installed you can install RubyGems including rails using "gem install rails" from the command line
  4. Download sqlitedll and put it in the bin directory of your ruby install. For me this was C:\Ruby192\bin
  5. Install sqlite3 using "gem install sqlite3-ruby"
  6. Create your first Ruby on Rails app by running "rails new path/to/your/new/app" from the command line
  7. Navigate to the new rails app using "cd path/to/your/new/app" and start your rails server using the "rails server" command (you may get prompted about firewall settings)
  8. Navigate to http://localhost:3000
And you are done!

You-are-riding-ruby-on-rails

Useful Resources: