From cd0267cd33d1792348f758044a8b3c301b875dcd Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Thu, 26 Aug 2010 01:56:10 +0200 Subject: [PATCH] adds missing require for #parameterize --- activesupport/lib/active_support/core_ext/string/inflections.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index 9a4e63672fcde..55b24b0925005 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -1,5 +1,7 @@ require 'active_support/inflector/methods' require 'active_support/inflector/inflections' +require 'active_support/inflector/transliterate' + # 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. #