diff options
author | Xavier Noria <fxn@hashref.com> | 2010-08-26 01:56:10 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-26 01:56:10 +0200 |
commit | cd0267cd33d1792348f758044a8b3c301b875dcd (patch) | |
tree | 83d29e8035ced97c7e7664c7b1caf54590d9c1dc | |
parent | fa8e17b5c274d80dc161c48b4b8ca67809593620 (diff) | |
download | rails-cd0267cd33d1792348f758044a8b3c301b875dcd.tar.gz rails-cd0267cd33d1792348f758044a8b3c301b875dcd.tar.bz2 rails-cd0267cd33d1792348f758044a8b3c301b875dcd.zip |
adds missing require for #parameterize
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/inflections.rb | 2 |
1 files changed, 2 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 9a4e63672f..55b24b0925 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. # |