Skip to content

Instantly share code, notes, and snippets.

@jonmarkgo
Created August 20, 2012 22:13
Show Gist options
  • Save jonmarkgo/3408448 to your computer and use it in GitHub Desktop.
Save jonmarkgo/3408448 to your computer and use it in GitHub Desktop.
# build up a response
response = Twilio::TwiML::Response.new do |r|
r.Say 'hello there', :voice => 'woman'
r.Dial do |d|
d.Conference 'myconfroom'
end
end
# print the result
puts response.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment