From d277b823d0d455c2d7a18cc0eb334890a32ad30e Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 29 Jul 2010 22:53:21 -0700 Subject: [PATCH] Add another missing require in 'active_support/inflector/inflections' --- activesupport/lib/active_support/core_ext/string/inflections.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index f33e4959f9c83..32913a06adcc3 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -1,4 +1,5 @@ require 'active_support/inflector/methods' +require 'active_support/inflector/inflections' # 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. #