module AASM::Persistence

def capitalize(string_or_symbol)

def capitalize(string_or_symbol)
  string_or_symbol.to_s.split('_').map {|segment| segment[0].upcase + segment[1..-1]}.join('')
end