Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Last active August 29, 2015 14:10
Show Gist options
  • Save joshuakfarrar/1334edaa9bcda8c3f59c to your computer and use it in GitHub Desktop.
Save joshuakfarrar/1334edaa9bcda8c3f59c to your computer and use it in GitHub Desktop.
irb(main):061:0> @taxon.products.unscope(:order).ascend_by_master_price.each do |product|
irb(main):062:1* puts product.price
irb(main):063:1> end
...
15.99
...
15.99
...
22.99
...
22.99
irb(main):064:0> @taxon.products.unscope(:order).descend_by_master_price.each do |product|
irb(main):065:1* puts product.price
irb(main):066:1> end
...
22.99
...
22.99
...
15.99
...
15.99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment