Skip to content

Commit

Permalink
Added Inflector.humanize to turn attribute names like employee_salary…
Browse files Browse the repository at this point in the history
… into "Employee salary". Used by automated error reporting in AR.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@449 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Jan 17, 2005
1 parent ecfe77f commit 1b38c55
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG
@@ -1,3 +1,5 @@
* Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR.

* Added availability of class inheritable attributes to the masses #477 [bitsweat]

class Foo
Expand Down
4 changes: 4 additions & 0 deletions activesupport/lib/inflector.rb
Expand Up @@ -27,6 +27,10 @@ def underscore(camel_cased_word)
camel_cased_word.to_s.gsub(/([A-Z]+)([A-Z])/,'\1_\2').gsub(/([a-z])([A-Z])/,'\1_\2').downcase
end

def humanize(lower_case_and_underscored_word)
lower_case_and_underscored_word.to_s.gsub(/_/, " ").capitalize
end

def demodulize(class_name_in_module)
class_name_in_module.to_s.gsub(/^.*::/, '')
end
Expand Down
11 changes: 11 additions & 0 deletions activesupport/test/inflector_test.rb
Expand Up @@ -65,6 +65,11 @@ class InflectorTest < Test::Unit::TestCase
"PrimarySpokesman" => "primary_spokesmen",
"NodeChild" => "node_children"
}

UnderscoreToHuman = {
"employee_salary" => "Employee salary",
"underground" => "Underground"
}

def test_pluralize
SingularToPlural.each do |singular, plural|
Expand Down Expand Up @@ -120,4 +125,10 @@ def test_classify
assert_equal(class_name, Inflector.classify(table_name))
end
end

def test_humanize
UnderscoreToHuman.each do |underscore, human|
assert_equal(human, Inflector.humanize(underscore))
end
end
end

0 comments on commit 1b38c55

Please sign in to comment.