I have a Rails app with a few model classes (e.g. Category, Subcategory, User, etc.). In order to implement a not-too-trivial filter funct
Category
Subcategory
User
I wonder if you want ::Category - getting Category from the top-level namespace rather than scoping it to FilterCategory?
::Category
If your models are in the app/models directory, you shouldn't need to explicitly require them - Rails already takes care of that.