I have a Rails controller, lets call it UsersController. It has the standard new, edit, show, index pages.
Rails convention creates a js file for use with this controller in /assets/javascripts/users.js. The problem is, this file is now a few thousand lines long. That sucks since it's not even page specific. Despite sparkling code and organization, the size of it makes it very difficult to navigate / read.
I'm assuming any application of reasonable size runs into this. There are a lot of questions about doing "per page" javascript files. But I just want to know, does Rails have a convention for this or not?