I previously used default_scope :order => 'group_name'
because I wanted it for all uses.
This doesn't work in Rails 4
I tried
scope :default, -> { order('group_name')}
which didn't raise a syntax error, but also didn't work - groups are not ordered by name
I can add a scope but I'd like to know if there's a replacement for all as a default.