class Bowl

Attributes

actions[R]
title[R]

Public Class Methods

new(size:) click to toggle source
# File lib/kitchenwares.rb, line 4
def initialize(size:)
  @actions = [:mix, :pickle]
  @size = size
  @title = '(bowl)'
end