Skip to content

Instantly share code, notes, and snippets.

@radralph
Created April 21, 2017 01:22
Show Gist options
  • Select an option

  • Save radralph/1e7fbfdaf8d5011fd0e993833c6447e5 to your computer and use it in GitHub Desktop.

Select an option

Save radralph/1e7fbfdaf8d5011fd0e993833c6447e5 to your computer and use it in GitHub Desktop.
ask "please choose from blue,yellow or green", {
:choices => "blue,yellow,green",
:recognizer => "en-PH",
:timeout => 20,
:bargein => false,
:mode => "speech",
:onChoice => lambda { |event| @answer = event.value},
:onBadChoice => lambda { |event| say "Sorry, we did not recognized your speech"},
:onTimeout => lambda { |event| say "Sorry, we did not receive your input"}}
say "you said" + @answer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment