From 03e44cbcb2426a97dd35f76bc2ac6491c69821b1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 17 Jan 2005 19:55:21 +0000 Subject: [PATCH] Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@450 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/core_ext/string/inflections.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/activesupport/lib/core_ext/string/inflections.rb b/activesupport/lib/core_ext/string/inflections.rb index c63b0592b4..5d1070b00a 100644 --- a/activesupport/lib/core_ext/string/inflections.rb +++ b/activesupport/lib/core_ext/string/inflections.rb @@ -31,6 +31,10 @@ def tableize def classify Inflector.classify(self) end + + def humanize + Inflector.humanize(self) + end def foreign_key(separate_class_name_and_id_with_underscore = true) Inflector.foreign_key(self, separate_class_name_and_id_with_underscore) -- GitLab