tableize(class_name)
public
Create the name of a table like Rails does for
models to table names. This method uses the pluralize method
on the last word in the string.
Examples
"RawScaledScorer".tableize
"egg_and_ham".tableize
"fancyCategory".tableize
Show source
def tableize(class_name)
pluralize(underscore(class_name))
end