I've recently upgraded the application to run based on rails 2.1.1 (and I've frozen rails).
The upgrade for my mongrel-based account went smoothly.
The upgrade for my mod_rails account is having problems. It appears that rails is choking on some of the newer rails syntax in my environment.rb file. For example, it complains on:
config.gem 'mislav-will_paginate', :lib => 'will_paginate', :source => http://gems.github.com'
with the message: Illformed requirement [{:source=>"http://gems.github.com", :lib=>"will_paginate"}]
And, if I comment that line out, it complains about:
config.time_zone = 'Eastern Time (US & Canada)'
saying that time_zone is an undefined method.
Given that this code worked perfectly under mongrel, it leads me to wonder whether mod_rails supports the latest version of rails? Or is there something else going on?
Thanks very much!