diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:57:07 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:56 -0800 |
commit | f15313c0c8c728e14f3a08ad728ff194f550fb80 (patch) | |
tree | 2c426ac28c1015ed7558a4238eccb1e35625e171 | |
parent | e7c08c1e297408ee391ca752df6a11e56cda243e (diff) | |
download | rails-f15313c0c8c728e14f3a08ad728ff194f550fb80.tar.gz rails-f15313c0c8c728e14f3a08ad728ff194f550fb80.tar.bz2 rails-f15313c0c8c728e14f3a08ad728ff194f550fb80.zip |
duration.rb needs active_support/core_ext/object/acts_like
-rw-r--r-- | activesupport/lib/active_support/duration.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/duration.rb b/activesupport/lib/active_support/duration.rb index 713ae1b671..c1f0e4bf81 100644 --- a/activesupport/lib/active_support/duration.rb +++ b/activesupport/lib/active_support/duration.rb @@ -1,5 +1,6 @@ require 'active_support/basic_object' require 'active_support/core_ext/array/conversions' +require 'active_support/core_ext/object/acts_like' module ActiveSupport # Provides accurate date and time measurements using Date#advance and |