Sha256: fd9a6ee191f9f88340a1fdb49970b558edcc8683c224f4bd44810637441eddcc

Contents?: true

Size: 337 Bytes

Versions: 1

Compression:

Stored size: 337 Bytes

Contents

# Run with: rackup -s thin
# Then browse to http://localhost:9292
# Check Rack::Builder doc for more details on this file format:
#  http://rack.rubyforge.org/doc/classes/Rack/Builder.html

require File.dirname(__FILE__) + '/../lib/thin'

app = proc do |env|
  [
    200,
    {'Content-Type' => 'text/html'},
    ['hi!']
  ]
end

run app

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thin-0.5.4-x86-mswin32-60 example/config.ru