class Dry::Inflector

def constantize(input)

Other tags:
    Since: - 0.1.0

Returns:
  • (Class, Module) - the class or module

Parameters:
  • input (String, Symbol) -- the input
def constantize(input)
  Object.const_get(input, false)
end