Setting up Rails on windows
Here are a list of commands to get rails on windows up and running.
First you need to install ruby. You can get it from
Install rails:
gem install rails --include-dependencies
Install mongrel:
gem install mongrel --include-dependencies
Choose mswin32 for your platform if you are presented with options
Start mongel:
mongrel_rails
Update your gem:
gem update
0 comments