diff options
author | Carl Lerche <carllerche@mac.com> | 2010-07-29 08:51:06 -0700 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2010-07-29 08:51:23 -0700 |
commit | d04c6f2ff6047fe03dae0ca162948befa246c7e4 (patch) | |
tree | 677907d84766586ef24f49110320a93d0be991a8 /activesupport/lib | |
parent | 0f0bdaea7bf46c316ee63a9a66c8668354f142f2 (diff) | |
download | rails-d04c6f2ff6047fe03dae0ca162948befa246c7e4.tar.gz rails-d04c6f2ff6047fe03dae0ca162948befa246c7e4.tar.bz2 rails-d04c6f2ff6047fe03dae0ca162948befa246c7e4.zip |
Add a missing require in 'active_support/core_ext/string/inflections'
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/inflections.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index 66c4034781..f33e4959f9 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -1,3 +1,4 @@ +require 'active_support/inflector/methods' # String inflections define new methods on the String class to transform names for different purposes. # For instance, you can figure out the name of a database from the name of a class. # |