Hello,
I’m trying to mix in a module so that AR::Base will sort all record by
ID
by default.
I’ve worked up a repo with a few methods of doing things similar to
this,
but I can’t get this working as I want (I started with the rails project
from
)
There are three non-master branches on that project:
https://github.com/rubyrailhead/ar-default-orderby/compare/ar-concern-order-by
- is close but doesn’t work. This is close to what I want to get
working. Can anyone help me get this branch working?
https://github.com/rubyrailhead/ar-default-orderby/compare/intermediate-subclass-order-by
- works but introduces an intermediate subclass
https://github.com/rubyrailhead/ar-default-orderby/compare/subclass-order-by
- puts the 'order by' directly in the mode. Works but requires
change
to each subclass.
Again, can anyone help me to make the changes to get the branch at
https://github.com/rubyrailhead/ar-default-orderby/compare/intermediate-subclass-order-by
Working?
Thanks very much in advance,
Ruby