aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/inflector.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:50:50 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:50:50 -0700
commit4d464552443b8b3e906f7e231602ac0f362758ed (patch)
treeccc9c7c014817a83e6b5094f5eec06cd4ee86adb /activesupport/lib/active_support/inflector.rb
parente70a9b8cd94036b00e8402ceee57ff2f24cd62f8 (diff)
downloadrails-4d464552443b8b3e906f7e231602ac0f362758ed.tar.gz
rails-4d464552443b8b3e906f7e231602ac0f362758ed.tar.bz2
rails-4d464552443b8b3e906f7e231602ac0f362758ed.zip
Explicit dependency on multibyte String extension
Diffstat (limited to 'activesupport/lib/active_support/inflector.rb')
-rw-r--r--activesupport/lib/active_support/inflector.rb2
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