module Voom::Presenters::Helpers::Inflector

Public Instance Methods

humanize(text) click to toggle source
# File lib/voom/presenters/helpers/inflector.rb, line 9
def humanize(text)
  inflector.humanize(text)
end
Also aliased as: titleize
inflector() click to toggle source
# File lib/voom/presenters/helpers/inflector.rb, line 5
def inflector
  @_inflector_ ||= Dry::Inflector.new
end
titleize(text)
Alias for: humanize