Skip to content

Instantly share code, notes, and snippets.

@wiscoDude
Created September 5, 2012 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wiscoDude/3636075 to your computer and use it in GitHub Desktop.
Save wiscoDude/3636075 to your computer and use it in GitHub Desktop.
TwiML.rb
# build up a response
response = Twilio::TwiML::Response.new do |r|
r.Say 'Hello, please wait.', :voice => 'woman'
r.Dial :callerId => '+14159992222' do |d|
d.Conference 'myfirstconference'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment