Skip to content

Instantly share code, notes, and snippets.

@rtomayko
Created June 3, 2009 23:46
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 rtomayko/123341 to your computer and use it in GitHub Desktop.
Save rtomayko/123341 to your computer and use it in GitHub Desktop.
require "sinatra/base"
class WhatTheFuck < Sinatra::Base
set :raise_errors, false
set :dump_errors, true
use_in_file_templates!
get "/" do
erb :wtf
end
end
__END__
@@ wtf
<%= raise %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment