Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shopifypartners/b177d141413a4756820fc8166528009c to your computer and use it in GitHub Desktop.
Save shopifypartners/b177d141413a4756820fc8166528009c to your computer and use it in GitHub Desktop.
# The campaign class.
class BuySetGetXOffCampaign
def initialize(selector, discount, partitioner)
@selector = selector
@discount = discount
@partitioner = partitioner
end
def run(cart)
applicable_items = cart.line_items.select do |line_item|
@selector.match?(line_item)
end
discounted_items = @partitioner.partition(cart, applicable_items)
discounted_items.each do |line_item|
@discount.apply(line_item)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment