Skip to content

Instantly share code, notes, and snippets.

@xavdid
Created April 5, 2016 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xavdid/0d2cf733131041c500ffa40742f0485c to your computer and use it in GitHub Desktop.
Save xavdid/0d2cf733131041c500ffa40742f0485c to your computer and use it in GitHub Desktop.
Dirt simple sinatra server
require 'sinatra'
require 'json'
get '/' do
'Hello, World!'
end
get '/data' do
{name: 'Sean', age: 24}.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment