diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:35:01 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:55 -0800 |
commit | 2f9fc1fe015839b77f1e1ec5a3252e58cd7ae2f1 (patch) | |
tree | 10de4c4d48f0f394e35c30b3f107184952b36d18 | |
parent | 44f98133446dea6f7ad1ff002dbf011f1450b01d (diff) | |
download | rails-2f9fc1fe015839b77f1e1ec5a3252e58cd7ae2f1.tar.gz rails-2f9fc1fe015839b77f1e1ec5a3252e58cd7ae2f1.tar.bz2 rails-2f9fc1fe015839b77f1e1ec5a3252e58cd7ae2f1.zip |
date_time/calculations.rb needs active_support/core_ext/object/acts_like because it uses acts_like?
-rw-r--r-- | activesupport/lib/active_support/core_ext/date_time/calculations.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_time/calculations.rb index e93abfa4a3..26979aa906 100644 --- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb @@ -1,4 +1,5 @@ require 'rational' unless RUBY_VERSION >= '1.9.2' +require 'active_support/core_ext/object/acts_like' class DateTime class << self |