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