public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Merge branch 'master' of git@github.com:macournoyer/thin

Conflicts:

  lib/thin/server.rb
macournoyer (author)
Wed Jan 23 21:10:27 -0800 2008
commit  27c724dc1719c2bd3d4b6f9a23149f66de43b018
tree    c69121def0ddd8a5c15e75f363fc85b76c92f10e
parent  a68f46d6646592ba9043998979aec927d5b0febd parent  196baef3d62a92c1311ea32f267dce3c253e488c
...
12
13
14
15
 
16
17
18
19
20
21
 
22
23
24
25
26
27
 
28
29
30
...
12
13
14
 
15
16
17
18
19
20
 
21
22
23
24
25
26
 
27
28
29
30
0
@@ -12,19 +12,19 @@
0
     include Logging
0
     include Daemonizable
0
     
0
- # Addresse and port on which the server is listening for connections.
0
+ # Address and port on which the server is listening for connections.
0
     attr_accessor :port, :host
0
     
0
     # UNIX domain socket on which the server is listening for connections.
0
     attr_accessor :socket
0
     
0
- # App called with the request that produce the response.
0
+ # App called with the request that produces the response.
0
     attr_accessor :app
0
     
0
     # Maximum time for incoming data to arrive
0
     attr_accessor :timeout
0
     
0
- # Creates a new server binded to <tt>host:port</tt>
0
+ # Creates a new server bound to <tt>host:port</tt>
0
     # or to +socket+ that will pass request to +app+.
0
     # If +host_or_socket+ contains a <tt>/</tt> it is assumed
0
     # to be a UNIX domain socket filename.

Comments

    No one has commented yet.