Created
November 12, 2015 22:46
-
-
Save markburns/7528d44c8f199a09d9f2 to your computer and use it in GitHub Desktop.
Simple call forwarding with Twilio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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]] } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| gem 'rack' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment