_.mixin(

  humanize: (name) ->
    _(name).chain().deUnderscore().titleize().value()

  deUnderscore: (str) ->
    String(str).replace(/_/g,' ')
)
