Class: String

Inherits:
Object show all
Defined in:
lib/embargo.rb

Overview

Humanize

Instance Method Summary collapse

Instance Method Details

#humanizeObject



85
86
87
88
89
# File 'lib/embargo.rb', line 85

def humanize
  sub(/\A_+/, '')
    .tr('_', ' ')
    .sub(/\A\w/) { |match| match.upcase }
end