I am using Ruby on Rails to create a website for a game I play.
I have a User
model and a Starbase
model. The relationship I am trying to
Have you tried adding a line for the inverse inflection (i.e. 'singular'):
inflect.singular "starbases", "starbase"
I tried your example in my console and it was the singularization that caused problems, not the other way around. I'm not sure if this fixes other issues (like routes), but it should fix the simple stuff (I think).