Ruby on rails install on windows - Installaction
Ruby on rails install on windows

Tags: install windows


First, Installing Ruby!

download one-click installer.

Install Ruby on Rails

   1  gem install rails

Install DB Driver

   1  gem install sqlite3-ruby

Make your application

   1  rails path/to/your/new/application
   2  cd path/to/your/new/application

Run Server

   1  ruby script/server

You're running Ruby on Rails! Follow the instructions on http://localhost:3000.