RailsCasts Pro episodes are now free!
Learn more or hide this
def shipping_price if total_weight == 0 0.00 elsif total_weight <= 3 8.00 elsif total_weight <= 5 10.00 else 12.00 end end def total_weight @total_weight ||= line_items.to_a.sum(&:weight) end
def weight for_download? ? 0 : product.weight end