Ruby (on Rails) Installation on Windows
Submitted by Aaron Longwell on Sun, 2005-07-10 00:03.
Most of the material in this tutorial comes from two places: How to Install Ruby on Windows, and Windows Success Stories in Rails.
Ruby installation is extremely simple on Windows, thanks to the Nullsoft installer. The installer copies the Ruby binaries to a path of your choice and adds the bin directory to your PATH.
- Download the Ruby Installer.
- Execute the installer, using c:\ruby\%RUBY_VERSION% as the installation folder. Replace %RUBY_VERSION% with the actual version you downloaded.
- Uncheck the SciTE editor. It's only there so that it can be used in the Camtasia video demos. You may also want to uncheck the FOX GUI and Tcl components.
- Leave RubyGems checked. We'll use the gem package manager to install rails.
- Open a DOS console after the installation completes. You may be asked to restart. Open the DOS window after restarting, if required.
- Install rails,
gem install rails
When setting up applications in development, remember how to configure rails in a subdirectory.

Post new comment