diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:17:55 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:17:55 -0700 |
commit | 151348824e6290785ce6bf6076150ff44a5bbdae (patch) | |
tree | df9b25f50ee9093cc3bd7318d42605a1662debca /activesupport | |
parent | 9cc8a75d84a4a5c52071b5c911f5afe1b577f760 (diff) | |
download | rails-151348824e6290785ce6bf6076150ff44a5bbdae.tar.gz rails-151348824e6290785ce6bf6076150ff44a5bbdae.tar.bz2 rails-151348824e6290785ce6bf6076150ff44a5bbdae.zip |
Fix core/time require of DateTime core extensions
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core/time.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core/time.rb b/activesupport/lib/active_support/core/time.rb index 71565ac6c2..43e13b5e58 100644 --- a/activesupport/lib/active_support/core/time.rb +++ b/activesupport/lib/active_support/core/time.rb @@ -1,4 +1,4 @@ require 'active_support/core/time/autoload' require 'active_support/core_ext/time' require 'active_support/core_ext/date' -require 'active_support/core_ext/datetime' +require 'active_support/core_ext/date_time' |