bscofield (owner)

Revisions

gist: 113532 Download_button fork
public
Public Clone URL: git://gist.github.com/113532.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
class SimpleRackApp
  def call(env)
    [
      status, # 200
      headers, # {"Content-Type" => "text/html"}

      body # ["<html>...</html>"]

    ]
  end
end