Ran this command:ruby script/server -e production in my RedMine root folder, didn’t get anywhere, got this error:
/home/xxx/public_html/xxx.com/thor/redmine-1.1.2/config/boot.rb:113:in `require': no such file to load -- rubygems (LoadError)
from /home/xxx/public_html/xxx/thor/redmine-1.1.2/config/boot.rb:113
from script/server:2:in `require'
from script/server:2
So, being said, rubygems is installed, but I don’t know how or where to include a line of code or anything to designate that it’s working properly. Anyways, hope someone can be of help.
Try putting a
require 'rubygems'in yourconfig/environment.rbfile – that should fix the problem.