Sha256: 78fcc866d5dda316217757bed9566a3cc1da56ed987ba426e073ed2e93b6e989
Contents?: true
Size: 682 Bytes
Versions: 2
Compression:
Stored size: 682 Bytes
Contents
class Step attr_accessor :id, :response_paths, :exit_program, :code_blocks def initialize(id, &block) @id = id @response_paths = {} @code_blocks = [] instance_eval(&block) if block_given? end def say(text) @say = text end def get_say @say end def response(response_path) response = response_path.first[0].downcase next_step = response_path.first[1] @response_paths[response] = next_step end def stop @exit_program = true end def formatted_responses "You can type one of the following: [#{@response_paths.keys.join(", ")}]. Enter 'exit' to quit." end def code(&block) code_blocks << block end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tuvi-0.0.13 | lib/tuvi/step.rb |
tuvi-0.0.12 | lib/tuvi/step.rb |