Join our Discussion Boards - Here

How to Check What Version of Ruby on Rails You Have

Simple stuff but sometimes I forget.

Check what version of Ruby you have;

ruby -v

Check what version of Ruby on Rails you have;

rails -v

How to Remove an Old version of Ruby

This post just saved me a hours of work, thanks

http://www.d-man.org/news/2009/01/06/91/

It outlines how to remove an old version of ruby and install the version you need.

How to Install Tracks 1.7 on Centos 5.2

 

Install Ruby on Rails – Use http://www.how-to-linux.com/2008/12/how-to-install-ruby-on-rails-on-centos-52/

Create a database for Tracks

mysql -u root -p

create database tracks;

exit

Download Tracks from http://bsag.bingodisk.com/public/files/tracks-current.zip

Unzip the Tracks archive

unzip tracks-current.zip

Put tracks into /opt

mv tracks-1.7 /opt

Edit /opt/tracks-1.7/config/database.yml

vi /opt/tracks-1.7/config/database.yml

Add you mysql server details

production:

  adapter: mysql

  database: tracks

  hosts: localhost

. . . → Read More: How to Install Tracks 1.7 on Centos 5.2

How To Install Redmine on Centos 5.2 Update

This is a combination of all my instructions on how to setup redmine on Centos.  Its still a work in progress so please note any problems in comments.

Install Ruby on Rails

yum install ruby ruby-devel ruby-libs ruby-irb ruby-rdoc ruby-mysql

Download and install ruby gems

wget http://rubyforge.org/frs/download.php/45905/rubygems-1.3.1.tgz

tar xvf rubygems-1.3.1.tgz

cd rubygems-1.3.1

ruby setup.rb

. . . → Read More: How To Install Redmine on Centos 5.2 Update