From 96d3b7ced4cb322fdbb9d1899221cce93a30f14f Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Tue, 8 Jan 2008 21:15:49 +0000 Subject: Improve documentation to classify to make it clear that it expects names to be plural. Reference #10615 [kris_chambers] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8596 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/string/inflections.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'activesupport/lib/active_support/core_ext') diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index dec6c9f016..72a93c217f 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -104,13 +104,16 @@ module ActiveSupport #:nodoc: Inflector.tableize(self) end - # Create a class name from a table name like Rails does for table names to models. + # Create a class name from a plural table name like Rails does for table names to models. # Note that this returns a string and not a Class. (To convert to an actual class # follow classify with constantize.) # # Examples # "egg_and_hams".classify #=> "EggAndHam" - # "post".classify #=> "Post" + # "posts".classify #=> "Post" + # + # Singular names are not handled correctly + # "business".classify #=> "Busines" def classify Inflector.classify(self) end -- cgit v1.2.3