class Dry::Inflector

def classify(input)

Other tags:
    Since: - 0.1.0

Returns:
  • (String) - the classified string

Parameters:
  • input (String, Symbol) -- the input
def classify(input)
  camelize(singularize(input.to_s.split(".").last))
end