diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:46:26 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:56 -0800 |
commit | 8ae9ef75f3074290ed860c7cbec31913a4fa325b (patch) | |
tree | 3dfcde6103117b1b3cf907a6b335c15a96c6a4ed | |
parent | 7ba8c9e78ec4400b0c74031eefa035ee0e7514a3 (diff) | |
download | rails-8ae9ef75f3074290ed860c7cbec31913a4fa325b.tar.gz rails-8ae9ef75f3074290ed860c7cbec31913a4fa325b.tar.bz2 rails-8ae9ef75f3074290ed860c7cbec31913a4fa325b.zip |
loading.rb needs active_support/core_ext/string/inflections because it uses underscore
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/loading.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/loading.rb b/activesupport/lib/active_support/core_ext/module/loading.rb index 4b4b110b25..43d0578ae6 100644 --- a/activesupport/lib/active_support/core_ext/module/loading.rb +++ b/activesupport/lib/active_support/core_ext/module/loading.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/string/inflections' + class Module # Returns String#underscore applied to the module name minus trailing classes. # |