Class: String
Overview
Humanize
Instance Method Summary collapse
Instance Method Details
#humanize ⇒ Object
85 86 87 88 89 |
# File 'lib/embargo.rb', line 85 def humanize sub(/\A_+/, '') .tr('_', ' ') .sub(/\A\w/) { |match| match.upcase } end |