I’ve been doing rails for a couple years now but this is my first time in the mailing list.
My question is this:
I’ve got a little objects housing some data, more or less like a struct with an initializer. What is the “Rails way” regarding arbitrary objects like this? Do I just stick it in the ‘model’ directory? or may ‘lib’?
Assuming you mean classes then I would put them models. Then it is
easy to add the tests. Timothy is right though, do whatever seems
appropriate for your project.