Skip to content

Instantly share code, notes, and snippets.

@jamster
Created August 24, 2011 14:32
Show Gist options
  • Select an option

  • Save jamster/1168196 to your computer and use it in GitHub Desktop.

Select an option

Save jamster/1168196 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'haml'
class Kaboom < Sinatra::Base
set :show_exceptions, false
set :views, File.dirname(__FILE__) + '/templates'
error do
"{'error' : #{env['sinatra.error'].to_s}}"
haml :"500"
end
get '/onceuponatime/?' do
raise "kaboom"
end
end
Kaboom.run!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment