class Egg

Attributes

condition[RW]
size[RW]
title[RW]

Public Class Methods

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

Public Instance Methods

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