gross 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +410 -0
- data/README.md +102 -0
- data/Rakefile +25 -0
- data/bin/thin +6 -0
- data/example/adapter.rb +32 -0
- data/example/async_app.ru +126 -0
- data/example/async_chat.ru +247 -0
- data/example/async_tailer.ru +100 -0
- data/example/config.ru +22 -0
- data/example/monit_sockets +20 -0
- data/example/monit_unixsock +20 -0
- data/example/myapp.rb +1 -0
- data/example/ramaze.ru +12 -0
- data/example/thin.god +80 -0
- data/example/thin_solaris_smf.erb +36 -0
- data/example/thin_solaris_smf.readme.txt +150 -0
- data/example/vlad.rake +72 -0
- data/ext/thin_parser/common.rl +59 -0
- data/ext/thin_parser/ext_help.h +14 -0
- data/ext/thin_parser/extconf.rb +6 -0
- data/ext/thin_parser/parser.c +1447 -0
- data/ext/thin_parser/parser.h +49 -0
- data/ext/thin_parser/parser.rl +152 -0
- data/ext/thin_parser/thin.c +435 -0
- data/lib/rack/adapter/loader.rb +75 -0
- data/lib/rack/adapter/rails.rb +178 -0
- data/lib/thin.rb +45 -0
- data/lib/thin/backends/base.rb +167 -0
- data/lib/thin/backends/swiftiply_client.rb +56 -0
- data/lib/thin/backends/tcp_server.rb +34 -0
- data/lib/thin/backends/unix_server.rb +56 -0
- data/lib/thin/command.rb +53 -0
- data/lib/thin/connection.rb +215 -0
- data/lib/thin/controllers/cluster.rb +178 -0
- data/lib/thin/controllers/controller.rb +189 -0
- data/lib/thin/controllers/service.rb +76 -0
- data/lib/thin/controllers/service.sh.erb +39 -0
- data/lib/thin/daemonizing.rb +180 -0
- data/lib/thin/headers.rb +40 -0
- data/lib/thin/logging.rb +174 -0
- data/lib/thin/request.rb +162 -0
- data/lib/thin/response.rb +117 -0
- data/lib/thin/runner.rb +238 -0
- data/lib/thin/server.rb +290 -0
- data/lib/thin/stats.html.erb +216 -0
- data/lib/thin/stats.rb +52 -0
- data/lib/thin/statuses.rb +44 -0
- data/lib/thin/version.rb +32 -0
- metadata +156 -0
@@ -0,0 +1,216 @@
|
|
1
|
+
<%#
|
2
|
+
# Taken from Rack::ShowException
|
3
|
+
# adapted from Django <djangoproject.com>
|
4
|
+
# Copyright (c) 2005, the Lawrence Journal-World
|
5
|
+
# Used under the modified BSD license:
|
6
|
+
# http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5
|
7
|
+
%>
|
8
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
9
|
+
<html lang="en">
|
10
|
+
<head>
|
11
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
12
|
+
<meta name="robots" content="NONE,NOARCHIVE" />
|
13
|
+
<title>Thin Stats</title>
|
14
|
+
<style type="text/css">
|
15
|
+
html * { padding:0; margin:0; }
|
16
|
+
body * { padding:10px 20px; }
|
17
|
+
body * * { padding:0; }
|
18
|
+
body { font:small sans-serif; }
|
19
|
+
body>div { border-bottom:1px solid #ddd; }
|
20
|
+
h1 { font-weight:normal; }
|
21
|
+
h2 { margin-bottom:.8em; }
|
22
|
+
h2 span { font-size:80%; color:#666; font-weight:normal; }
|
23
|
+
h3 { margin:1em 0 .5em 0; }
|
24
|
+
h4 { margin:0 0 .5em 0; font-weight: normal; }
|
25
|
+
table {
|
26
|
+
border:1px solid #ccc; border-collapse: collapse; background:white; }
|
27
|
+
tbody td, tbody th { vertical-align:top; padding:2px 3px; }
|
28
|
+
thead th {
|
29
|
+
padding:1px 6px 1px 3px; background:#fefefe; text-align:left;
|
30
|
+
font-weight:normal; font-size:11px; border:1px solid #ddd; }
|
31
|
+
tbody th { text-align:right; color:#666; padding-right:.5em; }
|
32
|
+
table.vars { margin:5px 0 2px 40px; }
|
33
|
+
table.vars td, table.req td { font-family:monospace; }
|
34
|
+
table td.code { width:100%;}
|
35
|
+
table td.code div { overflow:hidden; }
|
36
|
+
table.source th { color:#666; }
|
37
|
+
table.source td {
|
38
|
+
font-family:monospace; white-space:pre; border-bottom:1px solid #eee; }
|
39
|
+
ul.traceback { list-style-type:none; }
|
40
|
+
ul.traceback li.frame { margin-bottom:1em; }
|
41
|
+
div.context { margin: 10px 0; }
|
42
|
+
div.context ol {
|
43
|
+
padding-left:30px; margin:0 10px; list-style-position: inside; }
|
44
|
+
div.context ol li {
|
45
|
+
font-family:monospace; white-space:pre; color:#666; cursor:pointer; }
|
46
|
+
div.context ol.context-line li { color:black; background-color:#ccc; }
|
47
|
+
div.context ol.context-line li span { float: right; }
|
48
|
+
div.commands { margin-left: 40px; }
|
49
|
+
div.commands a { color:black; text-decoration:none; }
|
50
|
+
#summary { background: #ffc; }
|
51
|
+
#summary h2 { font-weight: normal; color: #666; }
|
52
|
+
#summary ul#quicklinks { list-style-type: none; margin-bottom: 2em; }
|
53
|
+
#summary ul#quicklinks li { float: left; padding: 0 1em; }
|
54
|
+
#summary ul#quicklinks>li+li { border-left: 1px #666 solid; }
|
55
|
+
#explanation { background:#eee; }
|
56
|
+
#template, #template-not-exist { background:#f6f6f6; }
|
57
|
+
#template-not-exist ul { margin: 0 0 0 20px; }
|
58
|
+
#traceback { background:#eee; }
|
59
|
+
#summary table { border:none; background:transparent; }
|
60
|
+
#requests { background:#f6f6f6; padding-left:120px; }
|
61
|
+
#requests h2, #requests h3 { position:relative; margin-left:-100px; }
|
62
|
+
#requests h3 { margin-bottom:-1em; }
|
63
|
+
.error { background: #ffc; }
|
64
|
+
.specific { color:#cc3300; font-weight:bold; }
|
65
|
+
</style>
|
66
|
+
</head>
|
67
|
+
<body>
|
68
|
+
|
69
|
+
<div id="summary">
|
70
|
+
<h1>Server stats</h1>
|
71
|
+
<h2><%= Thin::SERVER %></h2>
|
72
|
+
<table>
|
73
|
+
<tr>
|
74
|
+
<th>Uptime</th>
|
75
|
+
<td><%= Time.now - @start_time %> sec</td>
|
76
|
+
</tr>
|
77
|
+
<tr>
|
78
|
+
<th>PID</th>
|
79
|
+
<td><%=h Process.pid %></td>
|
80
|
+
</tr>
|
81
|
+
</table>
|
82
|
+
|
83
|
+
<% if @last_request %>
|
84
|
+
<h3>Jump to:</h3>
|
85
|
+
<ul id="quicklinks">
|
86
|
+
<li><a href="#get-info">GET</a></li>
|
87
|
+
<li><a href="#post-info">POST</a></li>
|
88
|
+
<li><a href="#cookie-info">Cookies</a></li>
|
89
|
+
<li><a href="#env-info">ENV</a></li>
|
90
|
+
</ul>
|
91
|
+
<% end %>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
<div id="stats">
|
95
|
+
<h2>Requests</h2>
|
96
|
+
<h3>Stats</h3>
|
97
|
+
<table class="req">
|
98
|
+
<tr>
|
99
|
+
<td>Requests</td>
|
100
|
+
<td><%= @requests %></td>
|
101
|
+
</tr>
|
102
|
+
<tr>
|
103
|
+
<td>Finished</td>
|
104
|
+
<td><%= @requests_finished %></td>
|
105
|
+
</tr>
|
106
|
+
<tr>
|
107
|
+
<td>Errors</td>
|
108
|
+
<td><%= @requests - @requests_finished %></td>
|
109
|
+
</tr>
|
110
|
+
<tr>
|
111
|
+
<td>Last request</td>
|
112
|
+
<td><%= @last_request_time %> sec</td>
|
113
|
+
</tr>
|
114
|
+
</table>
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<% if @last_request %>
|
118
|
+
<div id="requestinfo">
|
119
|
+
<h2>Last Request information</h2>
|
120
|
+
|
121
|
+
<h3 id="get-info">GET</h3>
|
122
|
+
<% unless @last_request.GET.empty? %>
|
123
|
+
<table class="req">
|
124
|
+
<thead>
|
125
|
+
<tr>
|
126
|
+
<th>Variable</th>
|
127
|
+
<th>Value</th>
|
128
|
+
</tr>
|
129
|
+
</thead>
|
130
|
+
<tbody>
|
131
|
+
<% @last_request.GET.sort_by { |k, v| k.to_s }.each { |key, val| %>
|
132
|
+
<tr>
|
133
|
+
<td><%=h key %></td>
|
134
|
+
<td class="code"><div><%=h val.inspect %></div></td>
|
135
|
+
</tr>
|
136
|
+
<% } %>
|
137
|
+
</tbody>
|
138
|
+
</table>
|
139
|
+
<% else %>
|
140
|
+
<p>No GET data.</p>
|
141
|
+
<% end %>
|
142
|
+
|
143
|
+
<h3 id="post-info">POST</h3>
|
144
|
+
<% unless @last_request.POST.empty? %>
|
145
|
+
<table class="req">
|
146
|
+
<thead>
|
147
|
+
<tr>
|
148
|
+
<th>Variable</th>
|
149
|
+
<th>Value</th>
|
150
|
+
</tr>
|
151
|
+
</thead>
|
152
|
+
<tbody>
|
153
|
+
<% @last_request.POST.sort_by { |k, v| k.to_s }.each { |key, val| %>
|
154
|
+
<tr>
|
155
|
+
<td><%=h key %></td>
|
156
|
+
<td class="code"><div><%=h val.inspect %></div></td>
|
157
|
+
</tr>
|
158
|
+
<% } %>
|
159
|
+
</tbody>
|
160
|
+
</table>
|
161
|
+
<% else %>
|
162
|
+
<p>No POST data.</p>
|
163
|
+
<% end %>
|
164
|
+
|
165
|
+
|
166
|
+
<h3 id="cookie-info">COOKIES</h3>
|
167
|
+
<% unless @last_request.cookies.empty? %>
|
168
|
+
<table class="req">
|
169
|
+
<thead>
|
170
|
+
<tr>
|
171
|
+
<th>Variable</th>
|
172
|
+
<th>Value</th>
|
173
|
+
</tr>
|
174
|
+
</thead>
|
175
|
+
<tbody>
|
176
|
+
<% @last_request.cookies.each { |key, val| %>
|
177
|
+
<tr>
|
178
|
+
<td><%=h key %></td>
|
179
|
+
<td class="code"><div><%=h val.inspect %></div></td>
|
180
|
+
</tr>
|
181
|
+
<% } %>
|
182
|
+
</tbody>
|
183
|
+
</table>
|
184
|
+
<% else %>
|
185
|
+
<p>No cookie data.</p>
|
186
|
+
<% end %>
|
187
|
+
|
188
|
+
<h3 id="env-info">Rack ENV</h3>
|
189
|
+
<table class="req">
|
190
|
+
<thead>
|
191
|
+
<tr>
|
192
|
+
<th>Variable</th>
|
193
|
+
<th>Value</th>
|
194
|
+
</tr>
|
195
|
+
</thead>
|
196
|
+
<tbody>
|
197
|
+
<% @last_request.env.sort_by { |k, v| k.to_s }.each { |key, val| %>
|
198
|
+
<tr>
|
199
|
+
<td><%=h key %></td>
|
200
|
+
<td class="code"><div><%=h val %></div></td>
|
201
|
+
</tr>
|
202
|
+
<% } %>
|
203
|
+
</tbody>
|
204
|
+
</table>
|
205
|
+
|
206
|
+
</div>
|
207
|
+
<% end %>
|
208
|
+
|
209
|
+
<div id="explanation">
|
210
|
+
<p>
|
211
|
+
You're seeing this page because you use <code>Thin::Stats</code>.
|
212
|
+
</p>
|
213
|
+
</div>
|
214
|
+
|
215
|
+
</body>
|
216
|
+
</html>
|
data/lib/thin/stats.rb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'erb'
|
2
|
+
|
3
|
+
module Thin
|
4
|
+
module Stats
|
5
|
+
# Rack adapter to log stats about a Rack application.
|
6
|
+
class Adapter
|
7
|
+
include ERB::Util
|
8
|
+
|
9
|
+
def initialize(app, path='/stats')
|
10
|
+
@app = app
|
11
|
+
@path = path
|
12
|
+
|
13
|
+
@template = ERB.new(File.read(File.dirname(__FILE__) + '/stats.html.erb'))
|
14
|
+
|
15
|
+
@requests = 0
|
16
|
+
@requests_finished = 0
|
17
|
+
@start_time = Time.now
|
18
|
+
end
|
19
|
+
|
20
|
+
def call(env)
|
21
|
+
if env['PATH_INFO'].index(@path) == 0
|
22
|
+
serve(env)
|
23
|
+
else
|
24
|
+
log(env) { @app.call(env) }
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def log(env)
|
29
|
+
@requests += 1
|
30
|
+
@last_request = Rack::Request.new(env)
|
31
|
+
request_started_at = Time.now
|
32
|
+
|
33
|
+
response = yield
|
34
|
+
|
35
|
+
@requests_finished += 1
|
36
|
+
@last_request_time = Time.now - request_started_at
|
37
|
+
|
38
|
+
response
|
39
|
+
end
|
40
|
+
|
41
|
+
def serve(env)
|
42
|
+
body = @template.result(binding)
|
43
|
+
|
44
|
+
[
|
45
|
+
200,
|
46
|
+
{ 'Content-Type' => 'text/html' },
|
47
|
+
[body]
|
48
|
+
]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Thin
|
2
|
+
# Every standard HTTP code mapped to the appropriate message.
|
3
|
+
# Stolent from Mongrel.
|
4
|
+
HTTP_STATUS_CODES = {
|
5
|
+
100 => 'Continue',
|
6
|
+
101 => 'Switching Protocols',
|
7
|
+
200 => 'OK',
|
8
|
+
201 => 'Created',
|
9
|
+
202 => 'Accepted',
|
10
|
+
203 => 'Non-Authoritative Information',
|
11
|
+
204 => 'No Content',
|
12
|
+
205 => 'Reset Content',
|
13
|
+
206 => 'Partial Content',
|
14
|
+
300 => 'Multiple Choices',
|
15
|
+
301 => 'Moved Permanently',
|
16
|
+
302 => 'Moved Temporarily',
|
17
|
+
303 => 'See Other',
|
18
|
+
304 => 'Not Modified',
|
19
|
+
305 => 'Use Proxy',
|
20
|
+
400 => 'Bad Request',
|
21
|
+
401 => 'Unauthorized',
|
22
|
+
402 => 'Payment Required',
|
23
|
+
403 => 'Forbidden',
|
24
|
+
404 => 'Not Found',
|
25
|
+
405 => 'Method Not Allowed',
|
26
|
+
406 => 'Not Acceptable',
|
27
|
+
407 => 'Proxy Authentication Required',
|
28
|
+
408 => 'Request Time-out',
|
29
|
+
409 => 'Conflict',
|
30
|
+
410 => 'Gone',
|
31
|
+
411 => 'Length Required',
|
32
|
+
412 => 'Precondition Failed',
|
33
|
+
413 => 'Request Entity Too Large',
|
34
|
+
414 => 'Request-URI Too Large',
|
35
|
+
415 => 'Unsupported Media Type',
|
36
|
+
422 => 'Unprocessable Entity',
|
37
|
+
500 => 'Internal Server Error',
|
38
|
+
501 => 'Not Implemented',
|
39
|
+
502 => 'Bad Gateway',
|
40
|
+
503 => 'Service Unavailable',
|
41
|
+
504 => 'Gateway Time-out',
|
42
|
+
505 => 'HTTP Version not supported'
|
43
|
+
}
|
44
|
+
end
|
data/lib/thin/version.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
module Thin
|
2
|
+
# Raised when a feature is not supported on the
|
3
|
+
# current platform.
|
4
|
+
class PlatformNotSupported < RuntimeError; end
|
5
|
+
|
6
|
+
module VERSION #:nodoc:
|
7
|
+
MAJOR = 1
|
8
|
+
MINOR = 7
|
9
|
+
TINY = 2
|
10
|
+
|
11
|
+
STRING = [MAJOR, MINOR, TINY].join('.')
|
12
|
+
|
13
|
+
CODENAME = "Bachmanity".freeze
|
14
|
+
|
15
|
+
RACK = [1, 0].freeze # Rack protocol version
|
16
|
+
end
|
17
|
+
|
18
|
+
NAME = 'gross'.freeze
|
19
|
+
SERVER = "#{NAME} #{VERSION::STRING} codename #{VERSION::CODENAME}".freeze
|
20
|
+
|
21
|
+
def self.win?
|
22
|
+
RUBY_PLATFORM =~ /mswin|mingw/
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.linux?
|
26
|
+
RUBY_PLATFORM =~ /linux/
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.ruby_18?
|
30
|
+
RUBY_VERSION =~ /^1\.8/
|
31
|
+
end
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,156 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gross
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.7.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Marc-Andre Cournoyer
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-05-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rack
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: eventmachine
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.0.4
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.0'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.0.4
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: daemons
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '1.0'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 1.0.9
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.0'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 1.0.9
|
73
|
+
description: A gross and fast web server
|
74
|
+
email: henrique@breim.com.br
|
75
|
+
executables:
|
76
|
+
- thin
|
77
|
+
extensions:
|
78
|
+
- ext/thin_parser/extconf.rb
|
79
|
+
extra_rdoc_files: []
|
80
|
+
files:
|
81
|
+
- CHANGELOG
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/thin
|
85
|
+
- example/adapter.rb
|
86
|
+
- example/async_app.ru
|
87
|
+
- example/async_chat.ru
|
88
|
+
- example/async_tailer.ru
|
89
|
+
- example/config.ru
|
90
|
+
- example/monit_sockets
|
91
|
+
- example/monit_unixsock
|
92
|
+
- example/myapp.rb
|
93
|
+
- example/ramaze.ru
|
94
|
+
- example/thin.god
|
95
|
+
- example/thin_solaris_smf.erb
|
96
|
+
- example/thin_solaris_smf.readme.txt
|
97
|
+
- example/vlad.rake
|
98
|
+
- ext/thin_parser/common.rl
|
99
|
+
- ext/thin_parser/ext_help.h
|
100
|
+
- ext/thin_parser/extconf.rb
|
101
|
+
- ext/thin_parser/parser.c
|
102
|
+
- ext/thin_parser/parser.h
|
103
|
+
- ext/thin_parser/parser.rl
|
104
|
+
- ext/thin_parser/thin.c
|
105
|
+
- lib/rack/adapter/loader.rb
|
106
|
+
- lib/rack/adapter/rails.rb
|
107
|
+
- lib/thin.rb
|
108
|
+
- lib/thin/backends/base.rb
|
109
|
+
- lib/thin/backends/swiftiply_client.rb
|
110
|
+
- lib/thin/backends/tcp_server.rb
|
111
|
+
- lib/thin/backends/unix_server.rb
|
112
|
+
- lib/thin/command.rb
|
113
|
+
- lib/thin/connection.rb
|
114
|
+
- lib/thin/controllers/cluster.rb
|
115
|
+
- lib/thin/controllers/controller.rb
|
116
|
+
- lib/thin/controllers/service.rb
|
117
|
+
- lib/thin/controllers/service.sh.erb
|
118
|
+
- lib/thin/daemonizing.rb
|
119
|
+
- lib/thin/headers.rb
|
120
|
+
- lib/thin/logging.rb
|
121
|
+
- lib/thin/request.rb
|
122
|
+
- lib/thin/response.rb
|
123
|
+
- lib/thin/runner.rb
|
124
|
+
- lib/thin/server.rb
|
125
|
+
- lib/thin/stats.html.erb
|
126
|
+
- lib/thin/stats.rb
|
127
|
+
- lib/thin/statuses.rb
|
128
|
+
- lib/thin/version.rb
|
129
|
+
homepage: http://code.macournoyer.com/thin/
|
130
|
+
licenses:
|
131
|
+
- GPLv2+
|
132
|
+
- Ruby 1.8
|
133
|
+
metadata:
|
134
|
+
source_code_uri: https://github.com/breim/gross
|
135
|
+
changelog_uri: https://github.com/macournoyer/thin/blob/master/CHANGELOG
|
136
|
+
post_install_message:
|
137
|
+
rdoc_options: []
|
138
|
+
require_paths:
|
139
|
+
- lib
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: 1.8.5
|
145
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
requirements: []
|
151
|
+
rubyforge_project: gross
|
152
|
+
rubygems_version: 2.6.12
|
153
|
+
signing_key:
|
154
|
+
specification_version: 4
|
155
|
+
summary: A gross and fast web server
|
156
|
+
test_files: []
|