I am a relative newbie to RoR. How is RoR able to know to look for a
table named "people" from a model class "Person"? Is there a look up
table of some kind or is this defined in a class?
How does RoR handle a model name of "Content"? Would it expect a table
name of "contents" or "content"?
There's a set of inflection rules, but they don't catch everything.
The stock environment.rb file shows you examples to tweak it. Rails
handles all the common cases though.
I heard some complaints that this works only for the English language,
obviously.
Is there a way to hack this file to handle other languages, say German
?