Category Archives: Ruby on Rails

How to Install Redmine 0.9.3 on Centos Update, Including Apache and SVN Configuration

This is on a fresh version of centos and includes; Ruby on Rail setup Redmine Installation Apache configuration SVN autocreate SVN authentication using redmine Thanks to the redmine team for an awesome tool. Install Ruby on Rails Install ruby 1.8.7 … Continue reading

Posted in Centos 5.2, Redmine, Ruby on Rails | Tagged , , , | Leave a comment

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.

Posted in Redmine, Ruby on Rails | Tagged , , | Leave a comment

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 … Continue reading

Posted in Centos 5.2, Open Source, Project Management, Ruby on Rails | Tagged , , | 1 Comment

Ruby 1.9.1 Released

Read more here – http://developers.slashdot.org/article.pl?sid=09%2F01%2F31%2F230216

Posted in Ruby on Rails | Tagged | Leave a comment

Install Redmine on Centos 5.2

See instructions on how to install Ruby on Rails – http://www.how-to-linux.com/2008/12/how-to-install-ruby-on-rails-on-centos-52/ go to /opt cd /opt download the source http://rubyforge.org/frs/?group_id=1850 wget http://rubyforge.org/frs/download.php/39478/redmine-0.7.3.zip unzip redmine-0.7.3.zip Create a Database for Redmine (install mysql if nececssary – see http://www.how-to-linux.com/2008/12/install-mysql-server-on-centos-52/) mysql -u root -p … Continue reading

Posted in Redmine, Ruby on Rails | 1 Comment

How To Install Ruby on Rails on Centos 5.2

Add rubyworks repo in /etc/yum.repos.d/.  vi /etc/yum.repos.d/rubyworks.repo And insert this text;  # Link file for RubyWorks yum repository # Place this file in /etc/yum.repos.d [rubyworks] name=RubyWorks baseurl=http://rubyworks.rubyforge.org/redhat/$releasever/RPMS/$basearch enabled=1 gpgcheck=1 gpgkey=http://rubyworks.rubyforge.org/RubyWorks.GPG.key priority=1 Install Ruby on Rails 2.2.2 on Centos 5.2 yum install ruby … Continue reading

Posted in Centos 5.2, Ruby on Rails | Tagged | 6 Comments