class Dry::Inflector

def demodulize(input)

Other tags:
    Since: - 0.1.0

Returns:
  • (String) - the demodulized string

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