diff options
author | Teflon Ted <github@rudiment.net> | 2008-05-07 17:00:41 -0400 |
---|---|---|
committer | Teflon Ted <github@rudiment.net> | 2008-05-07 17:00:41 -0400 |
commit | ac3aea63833a471b6b7e32fca848a28327cb51ea (patch) | |
tree | de7666a5501fd71fa1709eae3861f3d40ce20347 | |
parent | 99bee8d2402785c4a57157d25cdc3e4911ad154b (diff) | |
parent | f5b84182dbc39bea79c8ee319c688d00fa99f9d1 (diff) | |
download | rails-ac3aea63833a471b6b7e32fca848a28327cb51ea.tar.gz rails-ac3aea63833a471b6b7e32fca848a28327cb51ea.tar.bz2 rails-ac3aea63833a471b6b7e32fca848a28327cb51ea.zip |
Merge branch 'master' of git@github.com:trak3r/docrails into trak3r/master
-rw-r--r-- | activesupport/lib/active_support/inflector.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/inflector.rb b/activesupport/lib/active_support/inflector.rb index c8736549f4..68fbf3da35 100644 --- a/activesupport/lib/active_support/inflector.rb +++ b/activesupport/lib/active_support/inflector.rb @@ -3,6 +3,11 @@ require 'singleton' # 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 # in inflections.rb. +# +# The Rails core team has stated patches for the inflections library will not be accepted +# in order to avoid breaking legacy applications which may be relying on errant inflections. +# If you discover an incorrect inflection and require it for your application, you'll need +# to correct it yourself (explained below). module Inflector # A singleton instance of this class is yielded by Inflector.inflections, which can then be used to specify additional # inflection rules. Examples: |