I have a question about how to do something \"The Rails Way\". With an application that has a public facing side and an admin interface what is the general consensus in the
In some smaller applications I don't think you need to separate the admin interface. Just use the regular interface and add admin functionality for logged in users.
In bigger projects, I would go with a namespace. Using a subdomain doesn't feel right to me for some reason.