diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 13:14:50 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 13:14:50 +0000 |
commit | 38e55bac6197c937c2f1ef356ff3be234758a7c7 (patch) | |
tree | 9c87c8065ef8ff720ed08fb7a5d07b59c58c4623 /activerecord | |
parent | 576b1627254ff0d40063312d7df876706a87eba6 (diff) | |
download | rails-38e55bac6197c937c2f1ef356ff3be234758a7c7.tar.gz rails-38e55bac6197c937c2f1ef356ff3be234758a7c7.tar.bz2 rails-38e55bac6197c937c2f1ef356ff3be234758a7c7.zip |
Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@365 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/lib/active_record.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb index 3a6fe1eb6e..7a7b39890a 100755 --- a/activerecord/lib/active_record.rb +++ b/activerecord/lib/active_record.rb @@ -24,6 +24,7 @@ $:.unshift(File.dirname(__FILE__)) +require 'action_controller/support/core_ext' require 'active_record/support/clean_logger' require 'active_record/support/misc' require 'active_record/support/dependencies' |