diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-29 02:40:34 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-29 02:40:34 +0000 |
commit | af2ebb29da7f77e145202e9e5ee4081ce6b85a93 (patch) | |
tree | 663c18f5ec58eff5b37e1e8dae52fd58d47f3266 /activesupport | |
parent | 9e76583e8eae7f4ec428ea3b42929403f16337ef (diff) | |
download | rails-af2ebb29da7f77e145202e9e5ee4081ce6b85a93.tar.gz rails-af2ebb29da7f77e145202e9e5ee4081ce6b85a93.tar.bz2 rails-af2ebb29da7f77e145202e9e5ee4081ce6b85a93.zip |
Inflections: MatrixTest -> MatrixTests instead of MatricesTest. Closes #8496.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6886 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/inflections.rb | 2 | ||||
-rw-r--r-- | activesupport/test/inflector_test.rb | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 2999f75c7f..e0296914fc 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Inflections: MatrixTest -> MatrixTests instead of MatricesTest. #8496 [jbwiv] + * Multibyte strings respond_to the String methods they proxy so they can be duck-typed. #6549 [Tuxie] * Array#to_xml yields the builder just like Hash and ActiveRecord::Base. #8472 [seth] diff --git a/activesupport/lib/active_support/inflections.rb b/activesupport/lib/active_support/inflections.rb index 8f3f8618cc..f53ef53ca4 100644 --- a/activesupport/lib/active_support/inflections.rb +++ b/activesupport/lib/active_support/inflections.rb @@ -12,7 +12,7 @@ Inflector.inflections do |inflect| inflect.plural(/(hive)$/i, '\1s') inflect.plural(/([^aeiouy]|qu)y$/i, '\1ies') inflect.plural(/(x|ch|ss|sh)$/i, '\1es') - inflect.plural(/(matr|vert|ind)ix|ex$/i, '\1ices') + inflect.plural(/(matr|vert|ind)(?:ix|ex)$/i, '\1ices') inflect.plural(/([m|l])ouse$/i, '\1ice') inflect.plural(/^(ox)$/i, '\1en') inflect.plural(/(quiz)$/i, '\1zes') diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb index 3aff541646..9849e0b52b 100644 --- a/activesupport/test/inflector_test.rb +++ b/activesupport/test/inflector_test.rb @@ -45,6 +45,7 @@ class InflectorTest < Test::Unit::TestCase "basis" => "bases", "diagnosis" => "diagnoses", + "diagnosis_a" => "diagnosis_as", "datum" => "data", "medium" => "media", @@ -92,6 +93,7 @@ class InflectorTest < Test::Unit::TestCase "vertex" => "vertices", "matrix" => "matrices", + "matrix_fu" => "matrix_fus", "axis" => "axes", "testis" => "testes", |