Skip to content

Instantly share code, notes, and snippets.

@gorsuch
Created February 17, 2012 20:08
Show Gist options
  • Save gorsuch/1855172 to your computer and use it in GitHub Desktop.
Save gorsuch/1855172 to your computer and use it in GitHub Desktop.
simple halt example for sinatra
require 'json'
require 'sinatra'
get '/' do
halt 403, {'Content-Type' => 'application/json'}, { message: 'some text' }.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment