Skip to content

Instantly share code, notes, and snippets.

@kingcons
Created March 15, 2016 17:30
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 kingcons/1578041066b3ca5a266b to your computer and use it in GitHub Desktop.
Save kingcons/1578041066b3ca5a266b to your computer and use it in GitHub Desktop.
require "sinatra/base"
require "json"
require "pry"
module Httpunk
class Api < Sinatra::Base
set :logging, true
get "/api/test" do
content_type :json
{ message: "Go go go!" }.to_json
end
run! if app_file == $0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment