Skip to content

Instantly share code, notes, and snippets.

@Shinya131
Created October 23, 2012 01:05
Show Gist options
  • Save Shinya131/3936041 to your computer and use it in GitHub Desktop.
Save Shinya131/3936041 to your computer and use it in GitHub Desktop.
class ItemWithQuantity
include Enumerable # 1.この組み込みライブラリをinclude
attr_reader :item, :quantity
def initialize(item, quantity)
@item = item
@quantity = quantity
end
def each # 2.eachを定義
quantity.times { yield item }
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment