diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-05-19 19:15:30 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-05-19 19:15:30 +0000 |
commit | 71b6f76543686a9ffdc3d6f9045de195ce7d7272 (patch) | |
tree | 49b547cf85767a3190562956d5a62ca8e9917587 /activesupport/lib | |
parent | 6375569484ce08f53dec8064146c2ca0c74affcd (diff) | |
download | rails-71b6f76543686a9ffdc3d6f9045de195ce7d7272.tar.gz rails-71b6f76543686a9ffdc3d6f9045de195ce7d7272.tar.bz2 rails-71b6f76543686a9ffdc3d6f9045de195ce7d7272.zip |
Fixed the Inflector to underscore strings containing numbers, so Area51Controller becomes area51_controller #1176 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1330 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/inflector.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector.rb b/activesupport/lib/active_support/inflector.rb index 5d885c62bf..2f2b37f52a 100644 --- a/activesupport/lib/active_support/inflector.rb +++ b/activesupport/lib/active_support/inflector.rb @@ -24,7 +24,7 @@ module Inflector end def underscore(camel_cased_word) - camel_cased_word.to_s.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z])/,'\1_\2').gsub(/([a-z])([A-Z])/,'\1_\2').downcase + camel_cased_word.to_s.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z])/,'\1_\2').gsub(/([a-z\d])([A-Z])/,'\1_\2').downcase end def humanize(lower_case_and_underscored_word) |