class Dry::Inflector

def tableize(input)

Other tags:
    Since: - 0.1.0

Returns:
  • (String) - the tableized string

Parameters:
  • input (String, Symbol) -- the input
def tableize(input)
  input = input.to_s.gsub("::", "_")
  pluralize(underscore(input))
end