aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-07-06 18:38:27 +0200
committerJosé Valim <jose.valim@gmail.com>2009-07-06 18:38:27 +0200
commitdd7ee082be9e53bbee15144b4c03b42a269b154b (patch)
treec38a9533be902a62217d08b630fb1581f7ed986d /activesupport
parent66d1b968d108787114372144e97f4f817847892b (diff)
downloadrails-dd7ee082be9e53bbee15144b4c03b42a269b154b.tar.gz
rails-dd7ee082be9e53bbee15144b4c03b42a269b154b.tar.bz2
rails-dd7ee082be9e53bbee15144b4c03b42a269b154b.zip
Use active_support/mini since we just need inflections.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/mini.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/mini.rb b/activesupport/lib/active_support/mini.rb
index fe7ba48e58..b787650655 100644
--- a/activesupport/lib/active_support/mini.rb
+++ b/activesupport/lib/active_support/mini.rb
@@ -1,9 +1,9 @@
$LOAD_PATH.unshift File.dirname(__FILE__)
-require "core_ext/blank"
# whole object.rb pulls up rarely used introspection extensions
+require "core_ext/object/blank"
require "core_ext/object/metaclass"
require 'core_ext/array'
require 'core_ext/hash'
require 'core_ext/module/attribute_accessors'
-require 'core_ext/string/inflections' \ No newline at end of file
+require 'core_ext/string/inflections'