aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core/all.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-31 10:03:35 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-31 10:03:35 -0700
commitd848b7817fe5ce044709e09fa96464d0d6020c9d (patch)
tree1da4628fec848784c5c328503fabe53ca3e79348 /activesupport/lib/active_support/core/all.rb
parent48068bc1a4bbb272def06139fab392cf964ddc8a (diff)
downloadrails-d848b7817fe5ce044709e09fa96464d0d6020c9d.tar.gz
rails-d848b7817fe5ce044709e09fa96464d0d6020c9d.tar.bz2
rails-d848b7817fe5ce044709e09fa96464d0d6020c9d.zip
Encapsulate date/time core extensions and constant autoloads in active_support/core/time
Diffstat (limited to 'activesupport/lib/active_support/core/all.rb')
-rw-r--r--activesupport/lib/active_support/core/all.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core/all.rb b/activesupport/lib/active_support/core/all.rb
new file mode 100644
index 0000000000..06440add20
--- /dev/null
+++ b/activesupport/lib/active_support/core/all.rb
@@ -0,0 +1,4 @@
+require 'active_support/core'
+Dir["#{File.dirname(__FILE__)}/core/*.rb"].sort.each do |path|
+ require "active_support/core/#{File.basename(path, '.rb')}"
+end