Install & Configure Apache, PHP, JSP, Ruby on Rails, MySQL, PHPMyAdmin & WordPress on Windows XP/2000
Install Ruby on Rails
Prerequisites
Ruby
Download the "One-Click Installer" for Windows from http://rubyforge.org/.
Version: 1.8.2-15
File Name: ruby182-15.exe
Download Location: http://rubyforge.org/frs/?group_id=167
Install Ruby
- Run ruby182-15.exe. Click Next >.

- Click I Agree.

- Click Next >.
- Click Install.


- Click Finish.
Install Rails
- Open a command prompt and run the following command:
gem install rails --include-dependencies

Create a Rails App
- Run the following command in the command prompt:
Note: You may change the path to whatever you wish. We are using our Apache DocumentRoot here. - Startup the WEBrick servlet by running the following command:
- Open http://localhost:3000 in a web browser. You should see something like the following:

rails "C:\Program Files\Apache Group\Apache2\htdocs\myfirstapp"
ruby "C:\Program Files\Apache Group\Apache2\htdocs\myfirstapp\script\server"
Note: If the Windows Firewall complains, click Unblock.
Note: Use CTRL-C to stop the WEBrick HTTP server.
Configuration
TBD
For more information on configuring Rails to work with Apache, see http://wiki.rubyonrails.com/rails/pages/GettingStartedWithRails
- TBD
...