diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-15 16:15:02 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-15 16:15:02 +0000 |
commit | ca175ed7c9b357fdb40e7f3e31cd0283354fd54c (patch) | |
tree | c6fa319e91709048df6a40af8a6fe19f932b85b5 /activerecord | |
parent | dc3d6eb9b4aaed051dd6d5a5a07f6c66b72da4c4 (diff) | |
download | rails-ca175ed7c9b357fdb40e7f3e31cd0283354fd54c.tar.gz rails-ca175ed7c9b357fdb40e7f3e31cd0283354fd54c.tar.bz2 rails-ca175ed7c9b357fdb40e7f3e31cd0283354fd54c.zip |
All libraries should link against the independent active support
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@625 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/lib/active_record.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb index 0eea2d02c1..0541413625 100755 --- a/activerecord/lib/active_record.rb +++ b/activerecord/lib/active_record.rb @@ -25,18 +25,10 @@ $:.unshift(File.dirname(__FILE__)) begin - require 'active_support/core_ext' - require 'active_support/clean_logger' - require 'active_support/misc' - require 'active_support/dependencies' + require 'active_support' rescue LoadError require 'rubygems' require_gem 'activesupport' - - require 'active_support/core_ext' - require 'active_support/clean_logger' - require 'active_support/misc' - require 'active_support/dependencies' end require 'active_record/base' |