class SpiceMixer::Spices

Public Class Methods

cayenne() click to toggle source
# File lib/spice_mixer.rb, line 32
def self.cayenne
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " cayenne"
end
chilly_powder() click to toggle source
# File lib/spice_mixer.rb, line 44
def self.chilly_powder
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " chilly powder"
end
cinnamon() click to toggle source
# File lib/spice_mixer.rb, line 104
def self.cinnamon
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " cinnamon"
end
cocao_powder() click to toggle source
# File lib/spice_mixer.rb, line 92
def self.cocao_powder
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " cocao powder"
end
crushed_peppers() click to toggle source
# File lib/spice_mixer.rb, line 56
def self.crushed_peppers
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " crushed peppers"
end
cumin() click to toggle source
# File lib/spice_mixer.rb, line 20
def self.cumin
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " cumin"
end
garlic_powder() click to toggle source
# File lib/spice_mixer.rb, line 68
def self.garlic_powder
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " garlic powder"
end
onion_powder() click to toggle source
# File lib/spice_mixer.rb, line 80
def self.onion_powder
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ", 
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " onion powder"
end
tumeric() click to toggle source
# File lib/spice_mixer.rb, line 8
def self.tumeric
  spoon_size = [  "1/8 ",     "1/4 ",   "1/2 ", "1 ",
                "1 1/8 ", "1 1/4th ", "1 1/2 ", "2 ",
                "2 1/8 ", "2 1/4th ", "2 1/2 ", "3 "]

  spoon_type = ["teaspoon ", "tablespoon ", "cup ", "shotglass "]

  print spoon_size.sample
  print spoon_type.sample
  puts " turmeric"
end