aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/inflections.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-07-29 22:53:21 -0700
committerCarl Lerche <carllerche@mac.com>2010-07-29 22:53:21 -0700
commitd277b823d0d455c2d7a18cc0eb334890a32ad30e (patch)
tree6f44a4f8a38f4fd404b50e74e75949d5afc4444b /activesupport/lib/active_support/core_ext/string/inflections.rb
parent03fc2f03cbc9b3354267e599f5fb6a42d58cd194 (diff)
downloadrails-d277b823d0d455c2d7a18cc0eb334890a32ad30e.tar.gz
rails-d277b823d0d455c2d7a18cc0eb334890a32ad30e.tar.bz2
rails-d277b823d0d455c2d7a18cc0eb334890a32ad30e.zip
Add another missing require in 'active_support/inflector/inflections'
Diffstat (limited to 'activesupport/lib/active_support/core_ext/string/inflections.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/string/inflections.rb1
1 files changed, 1 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 f33e4959f9..32913a06ad 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.
#