module Guys

This contains all the guys.

Public Instance Methods

random_berry() click to toggle source

Returns a random berry.

# File lib/guys.rb, line 6
def random_berry
  berry_kinds = %w(straw rasp black blue cran elder goose wild clone bumble)
  berry_kinds.sample + "berry"
end