Skip to content

Instantly share code, notes, and snippets.

@thurloat
Created December 6, 2009 18:48
Show Gist options
  • Save thurloat/250335 to your computer and use it in GitHub Desktop.
Save thurloat/250335 to your computer and use it in GitHub Desktop.
import SpiceRack, Knife, SaucePan, Stove, FoodProcessor, PorkChop, Onion, GreenPepper
Stove.heat(:HIGH)
SaucePan.oil
Knife.cube(PorkChop)!
SaucePan.add(PorkChop)
spice = SpiceRack.choose(:CAYENNE)
10.times {SaucePan.add(spice.dash)}
[Onion, GreenPepper].do { |x|
FoodProcessor.process(x, :CHUNKY)
SaucePan.add(x)
}
SaucePan.toss
SaucePan.wait(30000)
import Tomatoes(:CRUSHED)
SaucePan.add(Tomatoes)
Stove.heat(:MEDIUM)
spice = SpiceRack.choose(:OREGANO)
5.times {SaucePan.add(spice.dash)}
SaucePan.cover
SaucePan.wait(120000)
SaucePan.stir
spice = SpiceRack.choose(:5SPICE)
5.times {SaucePan.add(spice.dash)}
SaucePan.stir
SaucePan.cover
SaucePan.wait(5000000ish)
import Bowl, Pasta
Bowl.add(SaucePan.contents)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment