Sha256: 14893f64a50aabe3e61e401d5f6f462abb33e91bd03e8116ea7b5e9e96bfe55f

Contents?: true

Size: 716 Bytes

Versions: 3

Compression:

Stored size: 716 Bytes

Contents

# Run with: rackup -s thin
# then browse to http://localhost:9292
# Or with: thin start -R config.ru
# then browse to http://localhost:3000
# 
# 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|
  # Response body has to respond to each and yield strings
  # See Rack specs for more info: http://rack.rubyforge.org/doc/files/SPEC.html
  body = ['hi!']
  
  [
    200,                                        # Status code
    { 'Content-Type' => 'text/html' },          # Reponse headers
    body                                        # Body of the response
  ]
end

run app

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
michaelyta-thin-1.2.2 example/config.ru
thin-1.2.1 example/config.ru
thin-1.2.2 example/config.ru