Skip to content

Instantly share code, notes, and snippets.

@bbhoss
Created April 9, 2015 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bbhoss/501436de9a8bd2f835b7 to your computer and use it in GitHub Desktop.
Save bbhoss/501436de9a8bd2f835b7 to your computer and use it in GitHub Desktop.
example.ru
require 'rubygems'
require 'rack'
def application(env)
[200, {"Content-Type" => "text/html"}, ["Hello Rack!"]]
end
run method(:application)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment