Skip to content

Instantly share code, notes, and snippets.

@stefanobernardi
Created February 7, 2012 03:11
Show Gist options
  • Select an option

  • Save stefanobernardi/1756903 to your computer and use it in GitHub Desktop.

Select an option

Save stefanobernardi/1756903 to your computer and use it in GitHub Desktop.
Sinatra rocks
require 'rubygems'
require 'sinatra' # it's all about you
# require 'stripe' -> stripe for payments
# require 'twilio-ruby' -> twilio to send sms
# require 'mail' -> with this I can send email
get "/" do
content_type :json
#I do some pretty cool stuff here.
cool_stuff.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment