Skip to content

Instantly share code, notes, and snippets.

@ch1ago
Created August 27, 2013 14:47
Show Gist options
  • Save ch1ago/6354514 to your computer and use it in GitHub Desktop.
Save ch1ago/6354514 to your computer and use it in GitHub Desktop.
class CartLine < ActiveRecord::Base
belongs_to :cart
belongs_to :product
%w[old_price main_price cost_price].each do |k|
def q_#{k}
quantity * #{k}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment