Skip to content

Instantly share code, notes, and snippets.

@thegrubbsian
Created February 9, 2013 15:54
Show Gist options
  • Save thegrubbsian/4745802 to your computer and use it in GitHub Desktop.
Save thegrubbsian/4745802 to your computer and use it in GitHub Desktop.
Code for the "Rails No Nos" blog post.
class Order < ActiveRecord::Base
has_many :line_items
before_save :update_total
def update_total
self.total = line_items.pluck(:price).inject(:+)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment