Skip to content

Instantly share code, notes, and snippets.

@JamesMcMahon
Created July 28, 2012 18:46
Show Gist options
  • Save JamesMcMahon/3194382 to your computer and use it in GitHub Desktop.
Save JamesMcMahon/3194382 to your computer and use it in GitHub Desktop.
Sinatra Test
require 'sinatra'
require 'json'
get '/hi' do
"Hello World!"
end
get '/json' do
content_type :json
{ :key1 => 'value1', :key2 => 'value2' }.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment