Skip to content

Instantly share code, notes, and snippets.

@7kaji
Created May 18, 2014 23:43
Show Gist options
  • Save 7kaji/294ff27279b1594ae9e2 to your computer and use it in GitHub Desktop.
Save 7kaji/294ff27279b1594ae9e2 to your computer and use it in GitHub Desktop.
# require 'bundler/setup'
require 'sinatra'
require 'sinatra/base'
require 'sinatra/reloader'
require 'twilio-ruby'
class Message < Sinatra::Base
get '/week' do
content_type 'text/xml'
Twilio::TwiML::Response.new do |r|
r.Say %w(monday tuesday wednesday thurs friday saturday sunday).sample
end.text
end
get '/' do
"Hello World"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment