aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/inflector.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-01-03 00:16:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-01-03 00:16:47 +0000
commit3229b59495270a094d3a0f83814f1c3d5ebec7e3 (patch)
treead9b887865595a990c9a4bfa4d9c5c4f4cdfd18e /activesupport/lib/active_support/inflector.rb
parentf5aaf945b68feff5325a5977b832101955b64a54 (diff)
downloadrails-3229b59495270a094d3a0f83814f1c3d5ebec7e3.tar.gz
rails-3229b59495270a094d3a0f83814f1c3d5ebec7e3.tar.bz2
rails-3229b59495270a094d3a0f83814f1c3d5ebec7e3.zip
Fixed String#titleize to work for strings with 's too (closes #10571) [trek]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8533 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/inflector.rb')
-rw-r--r--activesupport/lib/active_support/inflector.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector.rb b/activesupport/lib/active_support/inflector.rb
index baa342f669..ee5d5753c9 100644
--- a/activesupport/lib/active_support/inflector.rb
+++ b/activesupport/lib/active_support/inflector.rb
@@ -162,7 +162,7 @@ module Inflector
# "man from the boondocks".titleize #=> "Man From The Boondocks"
# "x-men: the last stand".titleize #=> "X Men: The Last Stand"
def titleize(word)
- humanize(underscore(word)).gsub(/\b([a-z])/) { $1.capitalize }
+ humanize(underscore(word)).gsub(/\b('?[a-z])/) { $1.capitalize }
end
# The reverse of +camelize+. Makes an underscored form from the expression in the string.