What's a good place for modules in a rails project

ruby-on-rails

Solution

Most people add this type of code in `lib`

Problem

I'm adding some non-trivial functionality in my rails application and it needs to be in a module and not one of the auto generated models. I'd like a few suggestions on where the file containing the module should go (currently I've added a 'code' directory on the same level as 'models' and 'views' - but I don't know that that's a strong choice).

Original source

Related problems