class Milk

Attributes

condition[RW]
title[RW]

Public Class Methods

new() click to toggle source
# File lib/ingredients.rb, line 71
def initialize
  @condition = 0
  @title = '(milk)'
end

Public Instance Methods

raw_eatable?() click to toggle source
# File lib/ingredients.rb, line 76
def raw_eatable?
  true
end