class Dry::Inflector

def camelize_upper(input)

Other tags:
    Since: - 0.1.3

Returns:
  • (String) - the upper camelized string

Parameters:
  • input (String, Symbol) -- the input
def camelize_upper(input)
  internal_camelize(input, true)
end