Skip to content

Instantly share code, notes, and snippets.

@dirk
Created March 11, 2011 00:01
Show Gist options
  • Save dirk/865219 to your computer and use it in GitHub Desktop.
Save dirk/865219 to your computer and use it in GitHub Desktop.
Sinatra in just two lines of code.
# This is a light-hearted riposte to rkh's great almost-sinatra (https://github.com/rkh/almost-sinatra) project.
%w{rubygems sinatra}.each {|g| require g }
get '/' do '<html><head><title>Definitely Sinatra</title></head><body>Hello World</body></html>'; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment