Skip to content

Instantly share code, notes, and snippets.

@markburns
Created November 12, 2015 22:46
Show Gist options
  • Select an option

  • Save markburns/7528d44c8f199a09d9f2 to your computer and use it in GitHub Desktop.

Select an option

Save markburns/7528d44c8f199a09d9f2 to your computer and use it in GitHub Desktop.
Simple call forwarding with Twilio
xml = <<-XML
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="man">
Please hold
</Say>
<Dial>0123 456 789</Dial>
</Response>
XML
run lambda { |env| [200, {"Content-Type" => "text/xml"}, [xml]] }
source 'https://rubygems.org'
gem 'rack'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment