Method: ReplacerBot.title_case

Defined in:
lib/replacer_bot/helpers.rb

.title_case(string) ⇒ Object



76
77
78
79
80
81
# File 'lib/replacer_bot/helpers.rb', line 76

def self.title_case string
  bits = string.split ''
  bits[0] = UnicodeUtils.upcase(bits[0])

  bits.join ''
end