Class: ActiveRecord::Relation
- Inherits:
-
Object
- Object
- ActiveRecord::Relation
- Defined in:
- lib/ordered_find.rb
Instance Method Summary collapse
Instance Method Details
#ordered_find(*args) ⇒ Object
6 7 8 9 |
# File 'lib/ordered_find.rb', line 6 def ordered_find(*args) ids = args.flatten where(id: ids).sort_by {|object| ids.index(object.id) } end |