У меня есть линия в моей модели в рельсах 2
named_scope: упорядочено, лямбда {| * args | {: order => (args.first || 'creation_at DESC')}}
как изменить это на rails3
scope :ordered, lambda { |*args| order(args.first || 'created_at DESC') }