aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-17 21:20:57 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-17 21:20:57 -0700
commit3202671dc9360c4a89d80355824b239b52b2f611 (patch)
treed48e894838ac7986ce5c401691e49595b578774e /activesupport/lib/active_support/core
parent151348824e6290785ce6bf6076150ff44a5bbdae (diff)
downloadrails-3202671dc9360c4a89d80355824b239b52b2f611.tar.gz
rails-3202671dc9360c4a89d80355824b239b52b2f611.tar.bz2
rails-3202671dc9360c4a89d80355824b239b52b2f611.zip
Fix core/all require of adjacent core features
Diffstat (limited to 'activesupport/lib/active_support/core')
-rw-r--r--activesupport/lib/active_support/core/all.rb2
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