Skip to content

Instantly share code, notes, and snippets.

@hash32bot
Created December 25, 2018 13:15
Show Gist options
  • Save hash32bot/401ff194d8c4b8078f7a8a865dc1f0ba to your computer and use it in GitHub Desktop.
Save hash32bot/401ff194d8c4b8078f7a8a865dc1f0ba to your computer and use it in GitHub Desktop.
Sinatra App - app.rb - http://bit.ly/2V9p6OL
#file app.rb
require 'sinatra/json'
#...
get '/hello.json' do
message = { success: true, message: 'hello'}
json message
end
#...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment