Skip to content

Instantly share code, notes, and snippets.

@dabit
Created February 12, 2013 15:32
Show Gist options
  • Save dabit/4770679 to your computer and use it in GitHub Desktop.
Save dabit/4770679 to your computer and use it in GitHub Desktop.
def times_bought
count = 0
orders = Spree::Order.complete
orders.each {|o| count+=1 if o.products.include?(self)}
count
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment