| Speaking the Lingo | [ Prev | Home | Next ] |
class Queue
def initialize(name) ... end
def to_sql ... end
end
class Alternative
def initialize(code, next_step) ... end
def to_sql ... end
end
class Step
def initialize(queue) ... end
def add(alternative) ... end
def to_sql ... end
end
class Route
def initialize(name) ... end
def add(step) ... end
def to_sql ... end
end
| |
| RubyConf.new(2005) | Copyright © 2005 by Jim Weirich (Some Rights Reserved) |