class Sugar

Attributes

condition[RW]
title[RW]

Public Class Methods

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

Public Instance Methods

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