Skip to content

Instantly share code, notes, and snippets.

@sivabudh
Created April 7, 2013 06:07
Show Gist options
  • Save sivabudh/5329251 to your computer and use it in GitHub Desktop.
Save sivabudh/5329251 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'sinatra/jsonp'
require 'json'
require 'sinatra/cross_origin'
set :port, 80
get '/' do
cross_origin
content_type :json
{hello:"Haha"}.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment