Commit | Line | Data |
---|---|---|
b790f880 C |
1 | Guide to getting Ruby on Rails up and running:\r |
2 | \r | |
3 | 1. Install Ruby - `cd /usr/pkgsrc/lang/ruby; bmake install clean` If you alreayd have Ruby 1.8.4 installed (ie `ruby --version` returns 1.8.4) you can skip this step.\r | |
4 | \r | |
5 | 2. Obtain and extract RubyGems, Ruby's third-party package manager - `wget \r | |
6 | http://rubyforge.org/frs/download.php/5207/rubygems-0.8.11.tgz; tar xvfz rubygems-0.8.11.tgz`\r | |
7 | \r | |
8 | 3. Install RubyGems - `cd rubygems-0.8.11; ruby setup.rb`\r | |
9 | \r | |
10 | 4. Install Rails - `gem install rails` Answer Y to any dependencies. \r |