Project

General

Profile

Installing redmine with ruby 1.8 (CentOS 6)

Added by Angelo Bertolli over 9 years ago

I'm trying to install redmine on centos 6 and I have been following the instructions. Eventually it fails on installing a gem called i18n and when I try to install it it says:

ERROR: Error installing jquery-rails:
i18n requires Ruby version >= 1.9.3.

However, according to the chart on http://www.redmine.org/projects/redmine/wiki/RedmineInstall
I should be able to install using Ruby version 1.8.7 which is the standard on CentOS 6

Is there any option for doing this? Does anyone else have it working on 1.8.7?


Replies (2)

RE: Installing redmine with ruby 1.8 (CentOS 6) - Added by Angelo Bertolli over 9 years ago

I am moving on to using 1.9.3. After experimenting with the versions of jquery-rails I can use, it seemed too difficult to try to keep the version of ruby. After all, Red Hat SCL provides 1.9.3 for us.

RE: Installing redmine with ruby 1.8 (CentOS 6) - Added by Charles Fulton about 9 years ago

I have it working on RHEL6 with ruby 1.8.7 for the moment. i18n 0.7.0 introduced a dependency on ruby 1.9.3. If you manually specify the gem in your Gemfile with a lower version it appears to work. Add this line:

gem "i18n", "0.6.11"
    (1-2/2)