Class: String

Inherits:
Object show all
Defined in:
lib/helpers/ruby_ext.rb

Overview

Humanize

Instance Method Summary collapse

Instance Method Details

#humanizeObject



14
15
16
17
18
# File 'lib/helpers/ruby_ext.rb', line 14

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