Skip to content

Instantly share code, notes, and snippets.

@irmiller22
Created October 21, 2013 14:22
Show Gist options
  • Save irmiller22/7084703 to your computer and use it in GitHub Desktop.
Save irmiller22/7084703 to your computer and use it in GitHub Desktop.
hello_rack
# require 'Rack'
# class YourAppClass
# def call(env)
# [200, {'Content-Type' => 'text/html'}, ['Hello Rack!']]
# end
# end
# run YourAppClass.new
run lambda { |env| [200, {'Content-Type'=>'text/plain'}, ["Hello World"]] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment