wait for a new release of Rails that has been developed against Ruby
v1.8.6?
Plus it seems on shared hosting platforms Rails is easy to update via
the
“freeze” approach, however I’m not sure if this same approach is
possible
with Ruby itself, and whether one would have to wait for the provided to
update Ruby? (e.g. Dreamhost?)
update Ruby? ( e.g. Dreamhost?)
If you’re on trunk or the 1-2-stable branch, upgrade at your leisure;
otherwise, wait for the Rails 1.2.3 release (real soon now.)
There’s only one real incompatibility: Ruby 1.8.6 introduces a private
Time#to_date method which alters the visibility of the existing,
public Active Support method. So a third option is to monkeypatch:
class Time
public :to_date
end
Best,
jeremy
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.