diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:20:57 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:20:57 -0700 |
commit | 3202671dc9360c4a89d80355824b239b52b2f611 (patch) | |
tree | d48e894838ac7986ce5c401691e49595b578774e | |
parent | 151348824e6290785ce6bf6076150ff44a5bbdae (diff) | |
download | rails-3202671dc9360c4a89d80355824b239b52b2f611.tar.gz rails-3202671dc9360c4a89d80355824b239b52b2f611.tar.bz2 rails-3202671dc9360c4a89d80355824b239b52b2f611.zip |
Fix core/all require of adjacent core features
-rw-r--r-- | activesupport/lib/active_support/core/all.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core/all.rb b/activesupport/lib/active_support/core/all.rb index 06440add20..f397f48e9c 100644 --- a/activesupport/lib/active_support/core/all.rb +++ b/activesupport/lib/active_support/core/all.rb @@ -1,4 +1,4 @@ require 'active_support/core' -Dir["#{File.dirname(__FILE__)}/core/*.rb"].sort.each do |path| +Dir["#{File.dirname(__FILE__)}/*.rb"].sort.each do |path| require "active_support/core/#{File.basename(path, '.rb')}" end |