class Cigars

Attributes

binder[RW]
body[RW]
filler[RW]
length[RW]
price[RW]
ring_gauge[RW]
size[RW]
tasting_note[RW]
wrapper[RW]

Public Class Methods

new(tasting_note: nil, ring_gauge: nil, body: nil, size: nil, length: nil, filler: nil, binder: nil, wrapper: nil, price: nil) click to toggle source
# File lib/Cigars.rb, line 7
def initialize(tasting_note: nil, ring_gauge: nil, body: nil, size: nil, length: nil, filler: nil, binder: nil, wrapper: nil, price: nil)
    @tasting_note = tasting_note
    @ring_gauge = ring_gauge
    @body = body
    @size = size
    @length = length
    @filler = filler
    @binder = binder
    @wrapper = wrapper
    @price = price
end