Skip to content

Instantly share code, notes, and snippets.

@matiasinsaurralde
Created August 23, 2014 04:31
Show Gist options
  • Save matiasinsaurralde/9d23bc333690fd92d306 to your computer and use it in GitHub Desktop.
Save matiasinsaurralde/9d23bc333690fd92d306 to your computer and use it in GitHub Desktop.
uber-twilio.rb
# using a twilio phone number for uber sms verification
require 'rubygems'
require 'twilio-ruby'
require 'sinatra'
get '/' do
twiml = Twilio::TwiML::Response.new do |r|
r.Message 'GO'
end
twiml.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment