I have a over 100 models in my rails application, and just for organization, I\'m dividing them into folders, all still under the main model folder, just to make it simpler to n
For 100 models, it's practically a requirement. 100 models is noisy in one directory.
Try this to get an idea of the Rails Way (tm)
rails new MultiDirectoryExample cd MultiDirectoryExample rails generate scaffold User::Photo description:string
Watch the script output and view the generated files.