diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-08-05 13:19:05 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-08-05 13:20:18 -0500 |
commit | 780ee36c56d79f934ff123d63a5229e0311cade8 (patch) | |
tree | da42fc01f224038ab42ca9c1d92effebe3ad5a93 /activesupport | |
parent | 04f88d163094a8b5fa56ba8178cec56aa3ea6b79 (diff) | |
download | rails-780ee36c56d79f934ff123d63a5229e0311cade8.tar.gz rails-780ee36c56d79f934ff123d63a5229e0311cade8.tar.bz2 rails-780ee36c56d79f934ff123d63a5229e0311cade8.zip |
Fix AR test suite error under Rubinius 2.0
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/time/calculations.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb index c5fbbcf890..a15a06d0e4 100644 --- a/activesupport/lib/active_support/core_ext/time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/time/calculations.rb @@ -1,5 +1,6 @@ require 'active_support/duration' require 'active_support/core_ext/time/zones' +require 'active_support/core_ext/time/conversions' class Time COMMON_YEAR_DAYS_IN_MONTH = [nil, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] |