I am having a problem getting an old Ruby on Rails 2 app that hasn't worked in a year to work.

I'm trying to run rake test:functionals in the root of my project directory, but am getting undefined method 'name' for "SystemTimer":String.

I've pasted everything that I believe relevant to the problem here: http://pastebin.com/NgBvystZ

Also, when I run rake itself, I get Errors running test:units! Not sure how to debug that.

I have copied and pasted everything that I think would be useful to understanding this problem. Your time is greatly appreciated. Thank you.

link|improve this question
Do you have the SystemTimer gem in your Gemfile? – monocle May 20 '11 at 4:59
feedback

2 Answers

up vote 39 down vote accepted

This is an incompatibility between the newest versions of rubygems (including your version, 1.8.2) and rails 2.3. Theoretically, this might be solved in rails 2.3.12, but that's not out yet. In the meantime, there are four ways to work around this:

(1) The easiest solution: Simply downgrade to an earlier version of rubygems. I know rails 2.3 will run fine under rubygems 1.7.2 (and possibly some point upgrades after that, don't know for sure). You can downgrade with this command: gem update --system 1.7.2. Note that while rails 2.3 will run under this version, you won't be able to do certain other things; freezing rails gems will fail, and I think migrations may fail too. For complete compatibility with rails 2.3, downgrade to rubygems 1.3.7.

(2) The hardest solution: Upgrade your app to rails 3.

(3) The compromising solution: I haven't tested this personally, but I hear that rails 2.3 with bundler is compatible with the latest rubygems. If you're interested in this solution, see http://gembundler.com/rails23.html for getting bundler to work under rails 2.3.

(4) The ugliest solution: I haven't tested this ether, but you can patch your vendored rails to implement the workaround for this that is supposedly coming in rails 2.3.12. This is really a last resort though -- I'd only do this if for some reason you need the latest version of rubygems installed, can't upgrade your app to rails 3, and don't want to use bundler.

link|improve this answer
2  
You're right. This was the solution. I had to find the right packages to use with ruby since the RoR developers are not fans of backwards compatibility in any sense of the word. I managed to find an old list of packages with the version numbers and that saved me. – sneilan Jun 17 '11 at 18:53
1  
+1 I can't upvote this post enough. Thank you! – Ethan Heilman Jul 28 '11 at 16:31
1  
Adding Bundler to a Rails 2 project is very easy and solves this problem. If you are not using rvm and have multiple sites on the same server do this: bundle install --path vendor/bundle to get an isolated copy of your gems. – Kris Jan 16 at 19:54
feedback

I chanced upon this thread, because I got the following error when migrating some Radiant 0.9.1 installations to a new server:

undefined method `name' for "RedCloth":String

(3) The compromising solution: I haven't tested this personally, but I hear that rails 2.3 with bundler is compatible with the latest rubygems. If you're interested in this solution, see http://gembundler.com/rails23.html for getting bundler to work under rails 2.3.

For me solution 3 was the only option, since we had other apps needing the latest rubygems on the system. Just install bundler and follow thes steps on this page: http://gembundler.com/rails23.html

And put this in a file called "Gemfile" in the app root:

source :gemcutter
gem "radiant", "0.9.1"
gem "sanitize"
gem "fastercsv"
gem "rmagick"
gem "rack", "~> 1.1.0"
gem "rake", ">= 0.8.3"
gem "RedCloth", ">= 4.0.0"
gem "will_paginate", "~> 2.3.11"
gem "mysql"

This is just my example. Start with only the first 2 lines, run bundle update and reload the page to see what else you might be missing.

Thank you Ben!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.