thin 1.0.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of thin might be problematic. Click here for more details.

data/COMMITTERS DELETED
@@ -1,3 +0,0 @@
1
- Marc-Andre Cournoyer <macournoyer@gmail.com>
2
- Kevin Williams <kevwil@gmail.com>
3
- James Golick
@@ -1,18 +0,0 @@
1
- module Rack
2
- module Handler
3
- # Rack Handler stricly to be able to use Thin through the rackup command.
4
- # To do so, simply require 'thin' in your Rack config file and run like this
5
- #
6
- # rackup --server thin
7
- #
8
- class Thin
9
- def self.run(app, options={})
10
- server = ::Thin::Server.new(options[:Host] || '0.0.0.0',
11
- options[:Port] || 8080,
12
- app)
13
- yield server if block_given?
14
- server.start
15
- end
16
- end
17
- end
18
- end