diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-28 23:50:50 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-28 23:50:50 -0700 |
commit | 4d464552443b8b3e906f7e231602ac0f362758ed (patch) | |
tree | ccc9c7c014817a83e6b5094f5eec06cd4ee86adb /activesupport/lib | |
parent | e70a9b8cd94036b00e8402ceee57ff2f24cd62f8 (diff) | |
download | rails-4d464552443b8b3e906f7e231602ac0f362758ed.tar.gz rails-4d464552443b8b3e906f7e231602ac0f362758ed.tar.bz2 rails-4d464552443b8b3e906f7e231602ac0f362758ed.zip |
Explicit dependency on multibyte String extension
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/inflector.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/inflector.rb b/activesupport/lib/active_support/inflector.rb index babc0d8668..f14f6a6490 100644 --- a/activesupport/lib/active_support/inflector.rb +++ b/activesupport/lib/active_support/inflector.rb @@ -1,6 +1,8 @@ # encoding: utf-8 require 'iconv' +require 'active_support/core_ext/string/multibyte' + module ActiveSupport # The Inflector transforms words from singular to plural, class names to table names, modularized class names to ones without, # and class names to foreign keys. The default inflections for pluralization, singularization, and uncountable words are kept |