unicorn-heroku-wait 4.8.0.1.g0ed2.dirty
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.CHANGELOG.old +25 -0
- data/.document +29 -0
- data/.gitignore +25 -0
- data/.mailmap +26 -0
- data/.manifest +166 -0
- data/.wrongdoc.yml +10 -0
- data/Application_Timeouts +77 -0
- data/CONTRIBUTORS +35 -0
- data/COPYING +674 -0
- data/ChangeLog +4861 -0
- data/DESIGN +97 -0
- data/Documentation/.gitignore +5 -0
- data/Documentation/GNUmakefile +30 -0
- data/Documentation/unicorn.1.txt +178 -0
- data/Documentation/unicorn_rails.1.txt +175 -0
- data/FAQ +53 -0
- data/GIT-VERSION-FILE +1 -0
- data/GIT-VERSION-GEN +39 -0
- data/GNUmakefile +267 -0
- data/HACKING +134 -0
- data/ISSUES +36 -0
- data/KNOWN_ISSUES +79 -0
- data/LATEST +28 -0
- data/LICENSE +67 -0
- data/Links +56 -0
- data/NEWS +2067 -0
- data/PHILOSOPHY +145 -0
- data/README +150 -0
- data/Rakefile +60 -0
- data/SIGNALS +123 -0
- data/Sandbox +103 -0
- data/TODO +5 -0
- data/TUNING +98 -0
- data/bin/unicorn +126 -0
- data/bin/unicorn_rails +209 -0
- data/examples/big_app_gc.rb +2 -0
- data/examples/echo.ru +27 -0
- data/examples/git.ru +13 -0
- data/examples/init.sh +74 -0
- data/examples/logger_mp_safe.rb +25 -0
- data/examples/logrotate.conf +29 -0
- data/examples/nginx.conf +156 -0
- data/examples/unicorn.conf.minimal.rb +13 -0
- data/examples/unicorn.conf.rb +102 -0
- data/ext/unicorn_http/CFLAGS +13 -0
- data/ext/unicorn_http/c_util.h +124 -0
- data/ext/unicorn_http/common_field_optimization.h +111 -0
- data/ext/unicorn_http/ext_help.h +82 -0
- data/ext/unicorn_http/extconf.rb +10 -0
- data/ext/unicorn_http/global_variables.h +97 -0
- data/ext/unicorn_http/httpdate.c +78 -0
- data/ext/unicorn_http/unicorn_http.c +4031 -0
- data/ext/unicorn_http/unicorn_http.rl +1036 -0
- data/ext/unicorn_http/unicorn_http_common.rl +76 -0
- data/lib/unicorn/app/exec_cgi.rb +154 -0
- data/lib/unicorn/app/inetd.rb +109 -0
- data/lib/unicorn/app/old_rails/static.rb +59 -0
- data/lib/unicorn/app/old_rails.rb +35 -0
- data/lib/unicorn/cgi_wrapper.rb +147 -0
- data/lib/unicorn/configurator.rb +679 -0
- data/lib/unicorn/const.rb +44 -0
- data/lib/unicorn/http_request.rb +122 -0
- data/lib/unicorn/http_response.rb +75 -0
- data/lib/unicorn/http_server.rb +803 -0
- data/lib/unicorn/launcher.rb +62 -0
- data/lib/unicorn/oob_gc.rb +71 -0
- data/lib/unicorn/preread_input.rb +33 -0
- data/lib/unicorn/socket_helper.rb +231 -0
- data/lib/unicorn/ssl_client.rb +11 -0
- data/lib/unicorn/ssl_configurator.rb +104 -0
- data/lib/unicorn/ssl_server.rb +42 -0
- data/lib/unicorn/stream_input.rb +146 -0
- data/lib/unicorn/tee_input.rb +126 -0
- data/lib/unicorn/tmpio.rb +29 -0
- data/lib/unicorn/util.rb +89 -0
- data/lib/unicorn/version.rb +1 -0
- data/lib/unicorn/worker.rb +152 -0
- data/lib/unicorn.rb +118 -0
- data/local.mk.sample +59 -0
- data/man/man1/unicorn.1 +211 -0
- data/man/man1/unicorn_rails.1 +210 -0
- data/script/isolate_for_tests +32 -0
- data/setup.rb +1586 -0
- data/t/.gitignore +5 -0
- data/t/GNUmakefile +82 -0
- data/t/README +42 -0
- data/t/bin/content-md5-put +36 -0
- data/t/bin/sha1sum.rb +17 -0
- data/t/bin/unused_listen +40 -0
- data/t/broken-app.ru +12 -0
- data/t/detach.ru +11 -0
- data/t/env.ru +3 -0
- data/t/fails-rack-lint.ru +5 -0
- data/t/heartbeat-timeout.ru +12 -0
- data/t/hijack.ru +42 -0
- data/t/listener_names.ru +4 -0
- data/t/my-tap-lib.sh +201 -0
- data/t/oob_gc.ru +20 -0
- data/t/oob_gc_path.ru +20 -0
- data/t/pid.ru +3 -0
- data/t/preread_input.ru +17 -0
- data/t/rack-input-tests.ru +21 -0
- data/t/sslgen.sh +71 -0
- data/t/t0000-http-basic.sh +50 -0
- data/t/t0001-reload-bad-config.sh +53 -0
- data/t/t0002-config-conflict.sh +49 -0
- data/t/t0002-parser-error.sh +94 -0
- data/t/t0003-working_directory.sh +51 -0
- data/t/t0004-heartbeat-timeout.sh +69 -0
- data/t/t0004-working_directory_broken.sh +24 -0
- data/t/t0005-working_directory_app.rb.sh +40 -0
- data/t/t0006-reopen-logs.sh +83 -0
- data/t/t0006.ru +13 -0
- data/t/t0007-working_directory_no_embed_cli.sh +44 -0
- data/t/t0008-back_out_of_upgrade.sh +110 -0
- data/t/t0009-broken-app.sh +56 -0
- data/t/t0009-winch_ttin.sh +59 -0
- data/t/t0010-reap-logging.sh +55 -0
- data/t/t0011-active-unix-socket.sh +79 -0
- data/t/t0012-reload-empty-config.sh +85 -0
- data/t/t0013-rewindable-input-false.sh +24 -0
- data/t/t0013.ru +12 -0
- data/t/t0014-rewindable-input-true.sh +24 -0
- data/t/t0014.ru +12 -0
- data/t/t0015-configurator-internals.sh +25 -0
- data/t/t0016-trust-x-forwarded-false.sh +30 -0
- data/t/t0017-trust-x-forwarded-true.sh +30 -0
- data/t/t0018-write-on-close.sh +23 -0
- data/t/t0019-max_header_len.sh +49 -0
- data/t/t0020-at_exit-handler.sh +49 -0
- data/t/t0021-process_detach.sh +29 -0
- data/t/t0022-listener_names-preload_app.sh +32 -0
- data/t/t0100-rack-input-tests.sh +124 -0
- data/t/t0116-client_body_buffer_size.sh +80 -0
- data/t/t0116.ru +16 -0
- data/t/t0200-rack-hijack.sh +27 -0
- data/t/t0300-no-default-middleware.sh +20 -0
- data/t/t0600-https-server-basic.sh +48 -0
- data/t/t9000-preread-input.sh +48 -0
- data/t/t9001-oob_gc.sh +47 -0
- data/t/t9002-oob_gc-path.sh +75 -0
- data/t/test-lib.sh +128 -0
- data/t/write-on-close.ru +11 -0
- data/test/aggregate.rb +15 -0
- data/test/benchmark/README +50 -0
- data/test/benchmark/dd.ru +18 -0
- data/test/benchmark/stack.ru +8 -0
- data/test/exec/README +5 -0
- data/test/exec/test_exec.rb +1047 -0
- data/test/test_helper.rb +297 -0
- data/test/unit/test_configurator.rb +175 -0
- data/test/unit/test_droplet.rb +28 -0
- data/test/unit/test_http_parser.rb +854 -0
- data/test/unit/test_http_parser_ng.rb +731 -0
- data/test/unit/test_http_parser_xftrust.rb +38 -0
- data/test/unit/test_request.rb +182 -0
- data/test/unit/test_response.rb +99 -0
- data/test/unit/test_server.rb +268 -0
- data/test/unit/test_signals.rb +188 -0
- data/test/unit/test_sni_hostnames.rb +47 -0
- data/test/unit/test_socket_helper.rb +197 -0
- data/test/unit/test_stream_input.rb +203 -0
- data/test/unit/test_tee_input.rb +294 -0
- data/test/unit/test_upload.rb +306 -0
- data/test/unit/test_util.rb +105 -0
- data/unicorn.gemspec +44 -0
- metadata +328 -0
data/unicorn.gemspec
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# -*- encoding: binary -*-
|
2
|
+
ENV["VERSION"] or abort "VERSION= must be specified"
|
3
|
+
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
|
4
|
+
require 'wrongdoc'
|
5
|
+
extend Wrongdoc::Gemspec
|
6
|
+
name, summary, title = readme_metadata
|
7
|
+
|
8
|
+
# don't bother with tests that fork, not worth our time to get working
|
9
|
+
# with `gem check -t` ... (of course we care for them when testing with
|
10
|
+
# GNU make when they can run in parallel)
|
11
|
+
test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
|
12
|
+
File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
|
13
|
+
end.compact
|
14
|
+
|
15
|
+
Gem::Specification.new do |s|
|
16
|
+
s.name = %q{unicorn-heroku-wait}
|
17
|
+
s.version = ENV["VERSION"].dup
|
18
|
+
s.authors = ["#{name} hackers"]
|
19
|
+
s.summary = summary
|
20
|
+
s.date = Time.now.utc.strftime('%Y-%m-%d')
|
21
|
+
s.description = readme_description
|
22
|
+
s.email = %q{mongrel-unicorn@rubyforge.org}
|
23
|
+
s.executables = %w(unicorn unicorn_rails)
|
24
|
+
s.extensions = %w(ext/unicorn_http/extconf.rb)
|
25
|
+
s.extra_rdoc_files = extra_rdoc_files(manifest)
|
26
|
+
s.files = manifest
|
27
|
+
s.homepage = Wrongdoc.config[:rdoc_url]
|
28
|
+
s.rdoc_options = rdoc_options
|
29
|
+
s.rubyforge_project = %q{mongrel}
|
30
|
+
s.test_files = test_files
|
31
|
+
|
32
|
+
# for people that are absolutely stuck on Rails 2.3.2 and can't
|
33
|
+
# up/downgrade to any other version, the Rack dependency may be
|
34
|
+
# commented out. Nevertheless, upgrading to Rails 2.3.4 or later is
|
35
|
+
# *strongly* recommended for security reasons.
|
36
|
+
s.add_dependency(%q<rack>)
|
37
|
+
s.add_dependency(%q<kgio>, '~> 2.6')
|
38
|
+
s.add_dependency(%q<raindrops>, '~> 0.7')
|
39
|
+
|
40
|
+
s.add_development_dependency('isolate', '~> 3.2')
|
41
|
+
s.add_development_dependency('wrongdoc', '~> 1.6.1')
|
42
|
+
|
43
|
+
s.licenses = ["GPLv2+", "Ruby 1.8"]
|
44
|
+
end
|
metadata
ADDED
@@ -0,0 +1,328 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unicorn-heroku-wait
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 4.8.0.1.g0ed2.dirty
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Unicorn hackers
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-12 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: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: kgio
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.6'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: raindrops
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: isolate
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: wrongdoc
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.6.1
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.6.1
|
83
|
+
description: |-
|
84
|
+
\Unicorn is an HTTP server for Rack applications designed to only serve
|
85
|
+
fast clients on low-latency, high-bandwidth connections and take
|
86
|
+
advantage of features in Unix/Unix-like kernels. Slow clients should
|
87
|
+
only be served by placing a reverse proxy capable of fully buffering
|
88
|
+
both the the request and response in between \Unicorn and slow clients.
|
89
|
+
email: mongrel-unicorn@rubyforge.org
|
90
|
+
executables:
|
91
|
+
- unicorn
|
92
|
+
- unicorn_rails
|
93
|
+
extensions:
|
94
|
+
- ext/unicorn_http/extconf.rb
|
95
|
+
extra_rdoc_files:
|
96
|
+
- FAQ
|
97
|
+
- README
|
98
|
+
- TUNING
|
99
|
+
- PHILOSOPHY
|
100
|
+
- HACKING
|
101
|
+
- DESIGN
|
102
|
+
- CONTRIBUTORS
|
103
|
+
- LICENSE
|
104
|
+
- SIGNALS
|
105
|
+
- KNOWN_ISSUES
|
106
|
+
- TODO
|
107
|
+
- NEWS
|
108
|
+
- ChangeLog
|
109
|
+
- LATEST
|
110
|
+
- lib/unicorn.rb
|
111
|
+
- lib/unicorn/configurator.rb
|
112
|
+
- lib/unicorn/http_server.rb
|
113
|
+
- lib/unicorn/preread_input.rb
|
114
|
+
- lib/unicorn/stream_input.rb
|
115
|
+
- lib/unicorn/tee_input.rb
|
116
|
+
- lib/unicorn/util.rb
|
117
|
+
- lib/unicorn/oob_gc.rb
|
118
|
+
- lib/unicorn/worker.rb
|
119
|
+
- ISSUES
|
120
|
+
- Sandbox
|
121
|
+
- Links
|
122
|
+
- Application_Timeouts
|
123
|
+
files:
|
124
|
+
- ".CHANGELOG.old"
|
125
|
+
- ".document"
|
126
|
+
- ".gitignore"
|
127
|
+
- ".mailmap"
|
128
|
+
- ".manifest"
|
129
|
+
- ".wrongdoc.yml"
|
130
|
+
- Application_Timeouts
|
131
|
+
- CONTRIBUTORS
|
132
|
+
- COPYING
|
133
|
+
- ChangeLog
|
134
|
+
- DESIGN
|
135
|
+
- Documentation/.gitignore
|
136
|
+
- Documentation/GNUmakefile
|
137
|
+
- Documentation/unicorn.1.txt
|
138
|
+
- Documentation/unicorn_rails.1.txt
|
139
|
+
- FAQ
|
140
|
+
- GIT-VERSION-FILE
|
141
|
+
- GIT-VERSION-GEN
|
142
|
+
- GNUmakefile
|
143
|
+
- HACKING
|
144
|
+
- ISSUES
|
145
|
+
- KNOWN_ISSUES
|
146
|
+
- LATEST
|
147
|
+
- LICENSE
|
148
|
+
- Links
|
149
|
+
- NEWS
|
150
|
+
- PHILOSOPHY
|
151
|
+
- README
|
152
|
+
- Rakefile
|
153
|
+
- SIGNALS
|
154
|
+
- Sandbox
|
155
|
+
- TODO
|
156
|
+
- TUNING
|
157
|
+
- bin/unicorn
|
158
|
+
- bin/unicorn_rails
|
159
|
+
- examples/big_app_gc.rb
|
160
|
+
- examples/echo.ru
|
161
|
+
- examples/git.ru
|
162
|
+
- examples/init.sh
|
163
|
+
- examples/logger_mp_safe.rb
|
164
|
+
- examples/logrotate.conf
|
165
|
+
- examples/nginx.conf
|
166
|
+
- examples/unicorn.conf.minimal.rb
|
167
|
+
- examples/unicorn.conf.rb
|
168
|
+
- ext/unicorn_http/CFLAGS
|
169
|
+
- ext/unicorn_http/c_util.h
|
170
|
+
- ext/unicorn_http/common_field_optimization.h
|
171
|
+
- ext/unicorn_http/ext_help.h
|
172
|
+
- ext/unicorn_http/extconf.rb
|
173
|
+
- ext/unicorn_http/global_variables.h
|
174
|
+
- ext/unicorn_http/httpdate.c
|
175
|
+
- ext/unicorn_http/unicorn_http.c
|
176
|
+
- ext/unicorn_http/unicorn_http.rl
|
177
|
+
- ext/unicorn_http/unicorn_http_common.rl
|
178
|
+
- lib/unicorn.rb
|
179
|
+
- lib/unicorn/app/exec_cgi.rb
|
180
|
+
- lib/unicorn/app/inetd.rb
|
181
|
+
- lib/unicorn/app/old_rails.rb
|
182
|
+
- lib/unicorn/app/old_rails/static.rb
|
183
|
+
- lib/unicorn/cgi_wrapper.rb
|
184
|
+
- lib/unicorn/configurator.rb
|
185
|
+
- lib/unicorn/const.rb
|
186
|
+
- lib/unicorn/http_request.rb
|
187
|
+
- lib/unicorn/http_response.rb
|
188
|
+
- lib/unicorn/http_server.rb
|
189
|
+
- lib/unicorn/launcher.rb
|
190
|
+
- lib/unicorn/oob_gc.rb
|
191
|
+
- lib/unicorn/preread_input.rb
|
192
|
+
- lib/unicorn/socket_helper.rb
|
193
|
+
- lib/unicorn/ssl_client.rb
|
194
|
+
- lib/unicorn/ssl_configurator.rb
|
195
|
+
- lib/unicorn/ssl_server.rb
|
196
|
+
- lib/unicorn/stream_input.rb
|
197
|
+
- lib/unicorn/tee_input.rb
|
198
|
+
- lib/unicorn/tmpio.rb
|
199
|
+
- lib/unicorn/util.rb
|
200
|
+
- lib/unicorn/version.rb
|
201
|
+
- lib/unicorn/worker.rb
|
202
|
+
- local.mk.sample
|
203
|
+
- man/man1/unicorn.1
|
204
|
+
- man/man1/unicorn_rails.1
|
205
|
+
- script/isolate_for_tests
|
206
|
+
- setup.rb
|
207
|
+
- t/.gitignore
|
208
|
+
- t/GNUmakefile
|
209
|
+
- t/README
|
210
|
+
- t/bin/content-md5-put
|
211
|
+
- t/bin/sha1sum.rb
|
212
|
+
- t/bin/unused_listen
|
213
|
+
- t/broken-app.ru
|
214
|
+
- t/detach.ru
|
215
|
+
- t/env.ru
|
216
|
+
- t/fails-rack-lint.ru
|
217
|
+
- t/heartbeat-timeout.ru
|
218
|
+
- t/hijack.ru
|
219
|
+
- t/listener_names.ru
|
220
|
+
- t/my-tap-lib.sh
|
221
|
+
- t/oob_gc.ru
|
222
|
+
- t/oob_gc_path.ru
|
223
|
+
- t/pid.ru
|
224
|
+
- t/preread_input.ru
|
225
|
+
- t/rack-input-tests.ru
|
226
|
+
- t/sslgen.sh
|
227
|
+
- t/t0000-http-basic.sh
|
228
|
+
- t/t0001-reload-bad-config.sh
|
229
|
+
- t/t0002-config-conflict.sh
|
230
|
+
- t/t0002-parser-error.sh
|
231
|
+
- t/t0003-working_directory.sh
|
232
|
+
- t/t0004-heartbeat-timeout.sh
|
233
|
+
- t/t0004-working_directory_broken.sh
|
234
|
+
- t/t0005-working_directory_app.rb.sh
|
235
|
+
- t/t0006-reopen-logs.sh
|
236
|
+
- t/t0006.ru
|
237
|
+
- t/t0007-working_directory_no_embed_cli.sh
|
238
|
+
- t/t0008-back_out_of_upgrade.sh
|
239
|
+
- t/t0009-broken-app.sh
|
240
|
+
- t/t0009-winch_ttin.sh
|
241
|
+
- t/t0010-reap-logging.sh
|
242
|
+
- t/t0011-active-unix-socket.sh
|
243
|
+
- t/t0012-reload-empty-config.sh
|
244
|
+
- t/t0013-rewindable-input-false.sh
|
245
|
+
- t/t0013.ru
|
246
|
+
- t/t0014-rewindable-input-true.sh
|
247
|
+
- t/t0014.ru
|
248
|
+
- t/t0015-configurator-internals.sh
|
249
|
+
- t/t0016-trust-x-forwarded-false.sh
|
250
|
+
- t/t0017-trust-x-forwarded-true.sh
|
251
|
+
- t/t0018-write-on-close.sh
|
252
|
+
- t/t0019-max_header_len.sh
|
253
|
+
- t/t0020-at_exit-handler.sh
|
254
|
+
- t/t0021-process_detach.sh
|
255
|
+
- t/t0022-listener_names-preload_app.sh
|
256
|
+
- t/t0100-rack-input-tests.sh
|
257
|
+
- t/t0116-client_body_buffer_size.sh
|
258
|
+
- t/t0116.ru
|
259
|
+
- t/t0200-rack-hijack.sh
|
260
|
+
- t/t0300-no-default-middleware.sh
|
261
|
+
- t/t0600-https-server-basic.sh
|
262
|
+
- t/t9000-preread-input.sh
|
263
|
+
- t/t9001-oob_gc.sh
|
264
|
+
- t/t9002-oob_gc-path.sh
|
265
|
+
- t/test-lib.sh
|
266
|
+
- t/write-on-close.ru
|
267
|
+
- test/aggregate.rb
|
268
|
+
- test/benchmark/README
|
269
|
+
- test/benchmark/dd.ru
|
270
|
+
- test/benchmark/stack.ru
|
271
|
+
- test/exec/README
|
272
|
+
- test/exec/test_exec.rb
|
273
|
+
- test/test_helper.rb
|
274
|
+
- test/unit/test_configurator.rb
|
275
|
+
- test/unit/test_droplet.rb
|
276
|
+
- test/unit/test_http_parser.rb
|
277
|
+
- test/unit/test_http_parser_ng.rb
|
278
|
+
- test/unit/test_http_parser_xftrust.rb
|
279
|
+
- test/unit/test_request.rb
|
280
|
+
- test/unit/test_response.rb
|
281
|
+
- test/unit/test_server.rb
|
282
|
+
- test/unit/test_signals.rb
|
283
|
+
- test/unit/test_sni_hostnames.rb
|
284
|
+
- test/unit/test_socket_helper.rb
|
285
|
+
- test/unit/test_stream_input.rb
|
286
|
+
- test/unit/test_tee_input.rb
|
287
|
+
- test/unit/test_upload.rb
|
288
|
+
- test/unit/test_util.rb
|
289
|
+
- unicorn.gemspec
|
290
|
+
homepage: http://unicorn.bogomips.org/
|
291
|
+
licenses:
|
292
|
+
- GPLv2+
|
293
|
+
- Ruby 1.8
|
294
|
+
metadata: {}
|
295
|
+
post_install_message:
|
296
|
+
rdoc_options:
|
297
|
+
- "-t"
|
298
|
+
- 'Unicorn: Rack HTTP server for fast clients and Unix'
|
299
|
+
- "-W"
|
300
|
+
- http://bogomips.org/unicorn.git/tree/%s
|
301
|
+
require_paths:
|
302
|
+
- lib
|
303
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
304
|
+
requirements:
|
305
|
+
- - ">="
|
306
|
+
- !ruby/object:Gem::Version
|
307
|
+
version: '0'
|
308
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
309
|
+
requirements:
|
310
|
+
- - ">"
|
311
|
+
- !ruby/object:Gem::Version
|
312
|
+
version: 1.3.1
|
313
|
+
requirements: []
|
314
|
+
rubyforge_project: mongrel
|
315
|
+
rubygems_version: 2.2.0
|
316
|
+
signing_key:
|
317
|
+
specification_version: 4
|
318
|
+
summary: Rack HTTP server for fast clients and Unix
|
319
|
+
test_files:
|
320
|
+
- test/unit/test_configurator.rb
|
321
|
+
- test/unit/test_http_parser.rb
|
322
|
+
- test/unit/test_http_parser_ng.rb
|
323
|
+
- test/unit/test_http_parser_xftrust.rb
|
324
|
+
- test/unit/test_request.rb
|
325
|
+
- test/unit/test_response.rb
|
326
|
+
- test/unit/test_server.rb
|
327
|
+
- test/unit/test_sni_hostnames.rb
|
328
|
+
- test/unit/test_util.rb
|