preplay_unicorn 4.3.1.2.gc450

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. data/.CHANGELOG.old +25 -0
  2. data/.document +29 -0
  3. data/.gitignore +24 -0
  4. data/.mailmap +26 -0
  5. data/.manifest +258 -0
  6. data/.wrongdoc.yml +10 -0
  7. data/Application_Timeouts +77 -0
  8. data/CONTRIBUTORS +35 -0
  9. data/COPYING +674 -0
  10. data/ChangeLog +3839 -0
  11. data/DESIGN +97 -0
  12. data/Documentation/.gitignore +5 -0
  13. data/Documentation/GNUmakefile +30 -0
  14. data/Documentation/unicorn.1.txt +174 -0
  15. data/Documentation/unicorn_rails.1.txt +175 -0
  16. data/FAQ +53 -0
  17. data/GIT-VERSION-FILE +1 -0
  18. data/GIT-VERSION-GEN +40 -0
  19. data/GNUmakefile +294 -0
  20. data/HACKING +134 -0
  21. data/ISSUES +36 -0
  22. data/KNOWN_ISSUES +79 -0
  23. data/LATEST +15 -0
  24. data/LICENSE +64 -0
  25. data/Links +56 -0
  26. data/NEWS +1886 -0
  27. data/PHILOSOPHY +145 -0
  28. data/README +149 -0
  29. data/Rakefile +97 -0
  30. data/SIGNALS +114 -0
  31. data/Sandbox +96 -0
  32. data/TODO +5 -0
  33. data/TUNING +98 -0
  34. data/bin/unicorn +121 -0
  35. data/bin/unicorn_rails +209 -0
  36. data/examples/big_app_gc.rb +2 -0
  37. data/examples/echo.ru +27 -0
  38. data/examples/git.ru +13 -0
  39. data/examples/init.sh +74 -0
  40. data/examples/logger_mp_safe.rb +25 -0
  41. data/examples/logrotate.conf +29 -0
  42. data/examples/nginx.conf +156 -0
  43. data/examples/unicorn.conf.minimal.rb +13 -0
  44. data/examples/unicorn.conf.rb +94 -0
  45. data/ext/unicorn_http/CFLAGS +13 -0
  46. data/ext/unicorn_http/c_util.h +124 -0
  47. data/ext/unicorn_http/common_field_optimization.h +111 -0
  48. data/ext/unicorn_http/ext_help.h +86 -0
  49. data/ext/unicorn_http/extconf.rb +10 -0
  50. data/ext/unicorn_http/global_variables.h +97 -0
  51. data/ext/unicorn_http/httpdate.c +82 -0
  52. data/ext/unicorn_http/unicorn_http.c +4031 -0
  53. data/ext/unicorn_http/unicorn_http.rl +1036 -0
  54. data/ext/unicorn_http/unicorn_http_common.rl +76 -0
  55. data/lib/unicorn/app/exec_cgi.rb +154 -0
  56. data/lib/unicorn/app/inetd.rb +109 -0
  57. data/lib/unicorn/app/old_rails/static.rb +59 -0
  58. data/lib/unicorn/app/old_rails.rb +35 -0
  59. data/lib/unicorn/cgi_wrapper.rb +147 -0
  60. data/lib/unicorn/configurator.rb +641 -0
  61. data/lib/unicorn/const.rb +40 -0
  62. data/lib/unicorn/http_request.rb +77 -0
  63. data/lib/unicorn/http_response.rb +45 -0
  64. data/lib/unicorn/http_server.rb +748 -0
  65. data/lib/unicorn/launcher.rb +62 -0
  66. data/lib/unicorn/oob_gc.rb +71 -0
  67. data/lib/unicorn/preread_input.rb +33 -0
  68. data/lib/unicorn/socket_helper.rb +208 -0
  69. data/lib/unicorn/ssl_client.rb +11 -0
  70. data/lib/unicorn/ssl_configurator.rb +104 -0
  71. data/lib/unicorn/ssl_server.rb +42 -0
  72. data/lib/unicorn/stream_input.rb +149 -0
  73. data/lib/unicorn/tee_input.rb +126 -0
  74. data/lib/unicorn/tmpio.rb +29 -0
  75. data/lib/unicorn/util.rb +68 -0
  76. data/lib/unicorn/worker.rb +88 -0
  77. data/lib/unicorn.rb +107 -0
  78. data/local.mk.sample +59 -0
  79. data/man/man1/unicorn.1 +201 -0
  80. data/man/man1/unicorn_rails.1 +208 -0
  81. data/preplay_unicorn.gemspec +44 -0
  82. data/script/isolate_for_tests +50 -0
  83. data/setup.rb +1586 -0
  84. data/t/.gitignore +5 -0
  85. data/t/GNUmakefile +82 -0
  86. data/t/README +42 -0
  87. data/t/bin/content-md5-put +36 -0
  88. data/t/bin/sha1sum.rb +17 -0
  89. data/t/bin/unused_listen +40 -0
  90. data/t/bin/utee +12 -0
  91. data/t/broken-app.ru +12 -0
  92. data/t/detach.ru +11 -0
  93. data/t/env.ru +3 -0
  94. data/t/heartbeat-timeout.ru +12 -0
  95. data/t/my-tap-lib.sh +201 -0
  96. data/t/oob_gc.ru +21 -0
  97. data/t/oob_gc_path.ru +21 -0
  98. data/t/pid.ru +3 -0
  99. data/t/preread_input.ru +17 -0
  100. data/t/rack-input-tests.ru +21 -0
  101. data/t/rails3-app/.gitignore +4 -0
  102. data/t/rails3-app/Gemfile +26 -0
  103. data/t/rails3-app/Rakefile +10 -0
  104. data/t/rails3-app/app/controllers/application_controller.rb +4 -0
  105. data/t/rails3-app/app/helpers/application_helper.rb +2 -0
  106. data/t/rails3-app/app/views/layouts/application.html.erb +14 -0
  107. data/t/rails3-app/config/application.rb +46 -0
  108. data/t/rails3-app/config/boot.rb +6 -0
  109. data/t/rails3-app/config/database.yml +22 -0
  110. data/t/rails3-app/config/environment.rb +5 -0
  111. data/t/rails3-app/config/environments/development.rb +19 -0
  112. data/t/rails3-app/config/environments/production.rb +42 -0
  113. data/t/rails3-app/config/environments/test.rb +32 -0
  114. data/t/rails3-app/config/initializers/backtrace_silencers.rb +7 -0
  115. data/t/rails3-app/config/initializers/inflections.rb +10 -0
  116. data/t/rails3-app/config/initializers/mime_types.rb +5 -0
  117. data/t/rails3-app/config/initializers/secret_token.rb +7 -0
  118. data/t/rails3-app/config/initializers/session_store.rb +8 -0
  119. data/t/rails3-app/config/locales/en.yml +5 -0
  120. data/t/rails3-app/config/routes.rb +58 -0
  121. data/t/rails3-app/config.ru +4 -0
  122. data/t/rails3-app/db/seeds.rb +7 -0
  123. data/t/rails3-app/doc/README_FOR_APP +2 -0
  124. data/t/rails3-app/lib/tasks/.gitkeep +0 -0
  125. data/t/rails3-app/public/404.html +1 -0
  126. data/t/rails3-app/public/500.html +1 -0
  127. data/t/rails3-app/public/x.txt +1 -0
  128. data/t/rails3-app/script/rails +9 -0
  129. data/t/rails3-app/test/performance/browsing_test.rb +9 -0
  130. data/t/rails3-app/test/test_helper.rb +13 -0
  131. data/t/rails3-app/vendor/plugins/.gitkeep +0 -0
  132. data/t/sslgen.sh +71 -0
  133. data/t/t0000-http-basic.sh +50 -0
  134. data/t/t0001-reload-bad-config.sh +53 -0
  135. data/t/t0002-config-conflict.sh +49 -0
  136. data/t/t0002-parser-error.sh +94 -0
  137. data/t/t0003-working_directory.sh +51 -0
  138. data/t/t0004-heartbeat-timeout.sh +69 -0
  139. data/t/t0004-working_directory_broken.sh +24 -0
  140. data/t/t0005-working_directory_app.rb.sh +37 -0
  141. data/t/t0006-reopen-logs.sh +83 -0
  142. data/t/t0006.ru +13 -0
  143. data/t/t0007-working_directory_no_embed_cli.sh +44 -0
  144. data/t/t0008-back_out_of_upgrade.sh +110 -0
  145. data/t/t0009-broken-app.sh +56 -0
  146. data/t/t0009-winch_ttin.sh +59 -0
  147. data/t/t0010-reap-logging.sh +55 -0
  148. data/t/t0011-active-unix-socket.sh +79 -0
  149. data/t/t0012-reload-empty-config.sh +85 -0
  150. data/t/t0013-rewindable-input-false.sh +24 -0
  151. data/t/t0013.ru +12 -0
  152. data/t/t0014-rewindable-input-true.sh +24 -0
  153. data/t/t0014.ru +12 -0
  154. data/t/t0015-configurator-internals.sh +25 -0
  155. data/t/t0016-trust-x-forwarded-false.sh +30 -0
  156. data/t/t0017-trust-x-forwarded-true.sh +30 -0
  157. data/t/t0018-write-on-close.sh +23 -0
  158. data/t/t0019-max_header_len.sh +49 -0
  159. data/t/t0020-at_exit-handler.sh +49 -0
  160. data/t/t0021-process_detach.sh +29 -0
  161. data/t/t0100-rack-input-tests.sh +124 -0
  162. data/t/t0116-client_body_buffer_size.sh +80 -0
  163. data/t/t0116.ru +16 -0
  164. data/t/t0300-rails3-basic.sh +28 -0
  165. data/t/t0301-rails3-missing-config-ru.sh +33 -0
  166. data/t/t0302-rails3-alt-working_directory.sh +32 -0
  167. data/t/t0303-rails3-alt-working_directory_config.ru.sh +56 -0
  168. data/t/t0304-rails3-alt-working_directory_no_embed_cli.sh +52 -0
  169. data/t/t0600-https-server-basic.sh +48 -0
  170. data/t/t9000-preread-input.sh +48 -0
  171. data/t/t9001-oob_gc.sh +47 -0
  172. data/t/t9002-oob_gc-path.sh +75 -0
  173. data/t/test-lib.sh +113 -0
  174. data/t/test-rails3.sh +27 -0
  175. data/t/write-on-close.ru +11 -0
  176. data/test/aggregate.rb +15 -0
  177. data/test/benchmark/README +50 -0
  178. data/test/benchmark/dd.ru +18 -0
  179. data/test/benchmark/stack.ru +8 -0
  180. data/test/exec/README +5 -0
  181. data/test/exec/test_exec.rb +1055 -0
  182. data/test/rails/app-1.2.3/.gitignore +2 -0
  183. data/test/rails/app-1.2.3/Rakefile +7 -0
  184. data/test/rails/app-1.2.3/app/controllers/application.rb +6 -0
  185. data/test/rails/app-1.2.3/app/controllers/foo_controller.rb +36 -0
  186. data/test/rails/app-1.2.3/app/helpers/application_helper.rb +4 -0
  187. data/test/rails/app-1.2.3/config/boot.rb +11 -0
  188. data/test/rails/app-1.2.3/config/database.yml +12 -0
  189. data/test/rails/app-1.2.3/config/environment.rb +13 -0
  190. data/test/rails/app-1.2.3/config/environments/development.rb +9 -0
  191. data/test/rails/app-1.2.3/config/environments/production.rb +5 -0
  192. data/test/rails/app-1.2.3/config/routes.rb +6 -0
  193. data/test/rails/app-1.2.3/db/.gitignore +0 -0
  194. data/test/rails/app-1.2.3/log/.gitignore +1 -0
  195. data/test/rails/app-1.2.3/public/404.html +1 -0
  196. data/test/rails/app-1.2.3/public/500.html +1 -0
  197. data/test/rails/app-2.0.2/.gitignore +2 -0
  198. data/test/rails/app-2.0.2/Rakefile +7 -0
  199. data/test/rails/app-2.0.2/app/controllers/application.rb +4 -0
  200. data/test/rails/app-2.0.2/app/controllers/foo_controller.rb +36 -0
  201. data/test/rails/app-2.0.2/app/helpers/application_helper.rb +4 -0
  202. data/test/rails/app-2.0.2/config/boot.rb +11 -0
  203. data/test/rails/app-2.0.2/config/database.yml +12 -0
  204. data/test/rails/app-2.0.2/config/environment.rb +17 -0
  205. data/test/rails/app-2.0.2/config/environments/development.rb +8 -0
  206. data/test/rails/app-2.0.2/config/environments/production.rb +5 -0
  207. data/test/rails/app-2.0.2/config/routes.rb +6 -0
  208. data/test/rails/app-2.0.2/db/.gitignore +0 -0
  209. data/test/rails/app-2.0.2/log/.gitignore +1 -0
  210. data/test/rails/app-2.0.2/public/404.html +1 -0
  211. data/test/rails/app-2.0.2/public/500.html +1 -0
  212. data/test/rails/app-2.1.2/.gitignore +2 -0
  213. data/test/rails/app-2.1.2/Rakefile +7 -0
  214. data/test/rails/app-2.1.2/app/controllers/application.rb +4 -0
  215. data/test/rails/app-2.1.2/app/controllers/foo_controller.rb +36 -0
  216. data/test/rails/app-2.1.2/app/helpers/application_helper.rb +4 -0
  217. data/test/rails/app-2.1.2/config/boot.rb +111 -0
  218. data/test/rails/app-2.1.2/config/database.yml +12 -0
  219. data/test/rails/app-2.1.2/config/environment.rb +17 -0
  220. data/test/rails/app-2.1.2/config/environments/development.rb +7 -0
  221. data/test/rails/app-2.1.2/config/environments/production.rb +5 -0
  222. data/test/rails/app-2.1.2/config/routes.rb +6 -0
  223. data/test/rails/app-2.1.2/db/.gitignore +0 -0
  224. data/test/rails/app-2.1.2/log/.gitignore +1 -0
  225. data/test/rails/app-2.1.2/public/404.html +1 -0
  226. data/test/rails/app-2.1.2/public/500.html +1 -0
  227. data/test/rails/app-2.2.2/.gitignore +2 -0
  228. data/test/rails/app-2.2.2/Rakefile +7 -0
  229. data/test/rails/app-2.2.2/app/controllers/application.rb +4 -0
  230. data/test/rails/app-2.2.2/app/controllers/foo_controller.rb +36 -0
  231. data/test/rails/app-2.2.2/app/helpers/application_helper.rb +4 -0
  232. data/test/rails/app-2.2.2/config/boot.rb +111 -0
  233. data/test/rails/app-2.2.2/config/database.yml +12 -0
  234. data/test/rails/app-2.2.2/config/environment.rb +17 -0
  235. data/test/rails/app-2.2.2/config/environments/development.rb +7 -0
  236. data/test/rails/app-2.2.2/config/environments/production.rb +5 -0
  237. data/test/rails/app-2.2.2/config/routes.rb +6 -0
  238. data/test/rails/app-2.2.2/db/.gitignore +0 -0
  239. data/test/rails/app-2.2.2/log/.gitignore +1 -0
  240. data/test/rails/app-2.2.2/public/404.html +1 -0
  241. data/test/rails/app-2.2.2/public/500.html +1 -0
  242. data/test/rails/test_rails.rb +287 -0
  243. data/test/test_helper.rb +300 -0
  244. data/test/unit/test_configurator.rb +158 -0
  245. data/test/unit/test_droplet.rb +28 -0
  246. data/test/unit/test_http_parser.rb +860 -0
  247. data/test/unit/test_http_parser_ng.rb +716 -0
  248. data/test/unit/test_http_parser_xftrust.rb +38 -0
  249. data/test/unit/test_request.rb +197 -0
  250. data/test/unit/test_response.rb +99 -0
  251. data/test/unit/test_server.rb +289 -0
  252. data/test/unit/test_signals.rb +207 -0
  253. data/test/unit/test_sni_hostnames.rb +47 -0
  254. data/test/unit/test_socket_helper.rb +192 -0
  255. data/test/unit/test_stream_input.rb +204 -0
  256. data/test/unit/test_tee_input.rb +296 -0
  257. data/test/unit/test_upload.rb +306 -0
  258. data/test/unit/test_util.rb +100 -0
  259. metadata +428 -0
metadata ADDED
@@ -0,0 +1,428 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: !binary |-
3
+ cHJlcGxheV91bmljb3Ju
4
+ version: !ruby/object:Gem::Version
5
+ version: 4.3.1.2.gc450
6
+ prerelease: 8
7
+ platform: ruby
8
+ authors:
9
+ - Unicorn hackers
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-09-28 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: !binary |-
17
+ cmFjaw==
18
+ requirement: &70231804390960 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ! '>='
22
+ - !ruby/object:Gem::Version
23
+ version: '0'
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *70231804390960
27
+ - !ruby/object:Gem::Dependency
28
+ name: !binary |-
29
+ a2dpbw==
30
+ requirement: &70231804390300 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - !binary |-
34
+ fj4=
35
+ - !ruby/object:Gem::Version
36
+ version: !binary |-
37
+ Mi42
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: *70231804390300
41
+ - !ruby/object:Gem::Dependency
42
+ name: !binary |-
43
+ cmFpbmRyb3Bz
44
+ requirement: &70231804389600 !ruby/object:Gem::Requirement
45
+ none: false
46
+ requirements:
47
+ - - !binary |-
48
+ fj4=
49
+ - !ruby/object:Gem::Version
50
+ version: !binary |-
51
+ MC43
52
+ type: :runtime
53
+ prerelease: false
54
+ version_requirements: *70231804389600
55
+ - !ruby/object:Gem::Dependency
56
+ name: !binary |-
57
+ aXNvbGF0ZQ==
58
+ requirement: &70231804388460 !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - !binary |-
62
+ fj4=
63
+ - !ruby/object:Gem::Version
64
+ version: !binary |-
65
+ My4y
66
+ type: :development
67
+ prerelease: false
68
+ version_requirements: *70231804388460
69
+ - !ruby/object:Gem::Dependency
70
+ name: !binary |-
71
+ d3Jvbmdkb2M=
72
+ requirement: &70231804387920 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - !binary |-
76
+ fj4=
77
+ - !ruby/object:Gem::Version
78
+ version: !binary |-
79
+ MS42LjE=
80
+ type: :development
81
+ prerelease: false
82
+ version_requirements: *70231804387920
83
+ description: ! '\Unicorn is an HTTP server for Rack applications designed to only
84
+ serve
85
+
86
+ fast clients on low-latency, high-bandwidth connections and take
87
+
88
+ advantage of features in Unix/Unix-like kernels. Slow clients should
89
+
90
+ only be served by placing a reverse proxy capable of fully buffering
91
+
92
+ both the the request and response in between \Unicorn and slow clients.'
93
+ email: !binary |-
94
+ bW9uZ3JlbC11bmljb3JuQHJ1Ynlmb3JnZS5vcmc=
95
+ executables:
96
+ - !binary |-
97
+ dW5pY29ybg==
98
+ - !binary |-
99
+ dW5pY29ybl9yYWlscw==
100
+ extensions:
101
+ - !binary |-
102
+ ZXh0L3VuaWNvcm5faHR0cC9leHRjb25mLnJi
103
+ extra_rdoc_files:
104
+ - FAQ
105
+ - README
106
+ - TUNING
107
+ - PHILOSOPHY
108
+ - HACKING
109
+ - DESIGN
110
+ - CONTRIBUTORS
111
+ - LICENSE
112
+ - SIGNALS
113
+ - KNOWN_ISSUES
114
+ - TODO
115
+ - NEWS
116
+ - ChangeLog
117
+ - LATEST
118
+ - lib/unicorn.rb
119
+ - lib/unicorn/configurator.rb
120
+ - lib/unicorn/http_server.rb
121
+ - lib/unicorn/preread_input.rb
122
+ - lib/unicorn/stream_input.rb
123
+ - lib/unicorn/tee_input.rb
124
+ - lib/unicorn/util.rb
125
+ - lib/unicorn/oob_gc.rb
126
+ - lib/unicorn/worker.rb
127
+ - ISSUES
128
+ - Sandbox
129
+ - Links
130
+ - Application_Timeouts
131
+ files:
132
+ - .CHANGELOG.old
133
+ - .document
134
+ - .gitignore
135
+ - .mailmap
136
+ - .manifest
137
+ - .wrongdoc.yml
138
+ - Application_Timeouts
139
+ - CONTRIBUTORS
140
+ - COPYING
141
+ - ChangeLog
142
+ - DESIGN
143
+ - Documentation/.gitignore
144
+ - Documentation/GNUmakefile
145
+ - Documentation/unicorn.1.txt
146
+ - Documentation/unicorn_rails.1.txt
147
+ - FAQ
148
+ - GIT-VERSION-FILE
149
+ - GIT-VERSION-GEN
150
+ - GNUmakefile
151
+ - HACKING
152
+ - ISSUES
153
+ - KNOWN_ISSUES
154
+ - LATEST
155
+ - LICENSE
156
+ - Links
157
+ - NEWS
158
+ - PHILOSOPHY
159
+ - README
160
+ - Rakefile
161
+ - SIGNALS
162
+ - Sandbox
163
+ - TODO
164
+ - TUNING
165
+ - bin/unicorn
166
+ - bin/unicorn_rails
167
+ - examples/big_app_gc.rb
168
+ - examples/echo.ru
169
+ - examples/git.ru
170
+ - examples/init.sh
171
+ - examples/logger_mp_safe.rb
172
+ - examples/logrotate.conf
173
+ - examples/nginx.conf
174
+ - examples/unicorn.conf.minimal.rb
175
+ - examples/unicorn.conf.rb
176
+ - ext/unicorn_http/CFLAGS
177
+ - ext/unicorn_http/c_util.h
178
+ - ext/unicorn_http/common_field_optimization.h
179
+ - ext/unicorn_http/ext_help.h
180
+ - ext/unicorn_http/extconf.rb
181
+ - ext/unicorn_http/global_variables.h
182
+ - ext/unicorn_http/httpdate.c
183
+ - ext/unicorn_http/unicorn_http.c
184
+ - ext/unicorn_http/unicorn_http.rl
185
+ - ext/unicorn_http/unicorn_http_common.rl
186
+ - lib/unicorn.rb
187
+ - lib/unicorn/app/exec_cgi.rb
188
+ - lib/unicorn/app/inetd.rb
189
+ - lib/unicorn/app/old_rails.rb
190
+ - lib/unicorn/app/old_rails/static.rb
191
+ - lib/unicorn/cgi_wrapper.rb
192
+ - lib/unicorn/configurator.rb
193
+ - lib/unicorn/const.rb
194
+ - lib/unicorn/http_request.rb
195
+ - lib/unicorn/http_response.rb
196
+ - lib/unicorn/http_server.rb
197
+ - lib/unicorn/launcher.rb
198
+ - lib/unicorn/oob_gc.rb
199
+ - lib/unicorn/preread_input.rb
200
+ - lib/unicorn/socket_helper.rb
201
+ - lib/unicorn/ssl_client.rb
202
+ - lib/unicorn/ssl_configurator.rb
203
+ - lib/unicorn/ssl_server.rb
204
+ - lib/unicorn/stream_input.rb
205
+ - lib/unicorn/tee_input.rb
206
+ - lib/unicorn/tmpio.rb
207
+ - lib/unicorn/util.rb
208
+ - lib/unicorn/worker.rb
209
+ - local.mk.sample
210
+ - man/man1/unicorn.1
211
+ - man/man1/unicorn_rails.1
212
+ - preplay_unicorn.gemspec
213
+ - script/isolate_for_tests
214
+ - setup.rb
215
+ - t/.gitignore
216
+ - t/GNUmakefile
217
+ - t/README
218
+ - t/bin/content-md5-put
219
+ - t/bin/sha1sum.rb
220
+ - t/bin/unused_listen
221
+ - t/bin/utee
222
+ - t/broken-app.ru
223
+ - t/detach.ru
224
+ - t/env.ru
225
+ - t/heartbeat-timeout.ru
226
+ - t/my-tap-lib.sh
227
+ - t/oob_gc.ru
228
+ - t/oob_gc_path.ru
229
+ - t/pid.ru
230
+ - t/preread_input.ru
231
+ - t/rack-input-tests.ru
232
+ - t/rails3-app/.gitignore
233
+ - t/rails3-app/Gemfile
234
+ - t/rails3-app/Rakefile
235
+ - t/rails3-app/app/controllers/application_controller.rb
236
+ - t/rails3-app/app/helpers/application_helper.rb
237
+ - t/rails3-app/app/views/layouts/application.html.erb
238
+ - t/rails3-app/config.ru
239
+ - t/rails3-app/config/application.rb
240
+ - t/rails3-app/config/boot.rb
241
+ - t/rails3-app/config/database.yml
242
+ - t/rails3-app/config/environment.rb
243
+ - t/rails3-app/config/environments/development.rb
244
+ - t/rails3-app/config/environments/production.rb
245
+ - t/rails3-app/config/environments/test.rb
246
+ - t/rails3-app/config/initializers/backtrace_silencers.rb
247
+ - t/rails3-app/config/initializers/inflections.rb
248
+ - t/rails3-app/config/initializers/mime_types.rb
249
+ - t/rails3-app/config/initializers/secret_token.rb
250
+ - t/rails3-app/config/initializers/session_store.rb
251
+ - t/rails3-app/config/locales/en.yml
252
+ - t/rails3-app/config/routes.rb
253
+ - t/rails3-app/db/seeds.rb
254
+ - t/rails3-app/doc/README_FOR_APP
255
+ - t/rails3-app/lib/tasks/.gitkeep
256
+ - t/rails3-app/public/404.html
257
+ - t/rails3-app/public/500.html
258
+ - t/rails3-app/public/x.txt
259
+ - t/rails3-app/script/rails
260
+ - t/rails3-app/test/performance/browsing_test.rb
261
+ - t/rails3-app/test/test_helper.rb
262
+ - t/rails3-app/vendor/plugins/.gitkeep
263
+ - t/sslgen.sh
264
+ - t/t0000-http-basic.sh
265
+ - t/t0001-reload-bad-config.sh
266
+ - t/t0002-config-conflict.sh
267
+ - t/t0002-parser-error.sh
268
+ - t/t0003-working_directory.sh
269
+ - t/t0004-heartbeat-timeout.sh
270
+ - t/t0004-working_directory_broken.sh
271
+ - t/t0005-working_directory_app.rb.sh
272
+ - t/t0006-reopen-logs.sh
273
+ - t/t0006.ru
274
+ - t/t0007-working_directory_no_embed_cli.sh
275
+ - t/t0008-back_out_of_upgrade.sh
276
+ - t/t0009-broken-app.sh
277
+ - t/t0009-winch_ttin.sh
278
+ - t/t0010-reap-logging.sh
279
+ - t/t0011-active-unix-socket.sh
280
+ - t/t0012-reload-empty-config.sh
281
+ - t/t0013-rewindable-input-false.sh
282
+ - t/t0013.ru
283
+ - t/t0014-rewindable-input-true.sh
284
+ - t/t0014.ru
285
+ - t/t0015-configurator-internals.sh
286
+ - t/t0016-trust-x-forwarded-false.sh
287
+ - t/t0017-trust-x-forwarded-true.sh
288
+ - t/t0018-write-on-close.sh
289
+ - t/t0019-max_header_len.sh
290
+ - t/t0020-at_exit-handler.sh
291
+ - t/t0021-process_detach.sh
292
+ - t/t0100-rack-input-tests.sh
293
+ - t/t0116-client_body_buffer_size.sh
294
+ - t/t0116.ru
295
+ - t/t0300-rails3-basic.sh
296
+ - t/t0301-rails3-missing-config-ru.sh
297
+ - t/t0302-rails3-alt-working_directory.sh
298
+ - t/t0303-rails3-alt-working_directory_config.ru.sh
299
+ - t/t0304-rails3-alt-working_directory_no_embed_cli.sh
300
+ - t/t0600-https-server-basic.sh
301
+ - t/t9000-preread-input.sh
302
+ - t/t9001-oob_gc.sh
303
+ - t/t9002-oob_gc-path.sh
304
+ - t/test-lib.sh
305
+ - t/test-rails3.sh
306
+ - t/write-on-close.ru
307
+ - test/aggregate.rb
308
+ - test/benchmark/README
309
+ - test/benchmark/dd.ru
310
+ - test/benchmark/stack.ru
311
+ - test/exec/README
312
+ - test/exec/test_exec.rb
313
+ - test/rails/app-1.2.3/.gitignore
314
+ - test/rails/app-1.2.3/Rakefile
315
+ - test/rails/app-1.2.3/app/controllers/application.rb
316
+ - test/rails/app-1.2.3/app/controllers/foo_controller.rb
317
+ - test/rails/app-1.2.3/app/helpers/application_helper.rb
318
+ - test/rails/app-1.2.3/config/boot.rb
319
+ - test/rails/app-1.2.3/config/database.yml
320
+ - test/rails/app-1.2.3/config/environment.rb
321
+ - test/rails/app-1.2.3/config/environments/development.rb
322
+ - test/rails/app-1.2.3/config/environments/production.rb
323
+ - test/rails/app-1.2.3/config/routes.rb
324
+ - test/rails/app-1.2.3/db/.gitignore
325
+ - test/rails/app-1.2.3/log/.gitignore
326
+ - test/rails/app-1.2.3/public/404.html
327
+ - test/rails/app-1.2.3/public/500.html
328
+ - test/rails/app-2.0.2/.gitignore
329
+ - test/rails/app-2.0.2/Rakefile
330
+ - test/rails/app-2.0.2/app/controllers/application.rb
331
+ - test/rails/app-2.0.2/app/controllers/foo_controller.rb
332
+ - test/rails/app-2.0.2/app/helpers/application_helper.rb
333
+ - test/rails/app-2.0.2/config/boot.rb
334
+ - test/rails/app-2.0.2/config/database.yml
335
+ - test/rails/app-2.0.2/config/environment.rb
336
+ - test/rails/app-2.0.2/config/environments/development.rb
337
+ - test/rails/app-2.0.2/config/environments/production.rb
338
+ - test/rails/app-2.0.2/config/routes.rb
339
+ - test/rails/app-2.0.2/db/.gitignore
340
+ - test/rails/app-2.0.2/log/.gitignore
341
+ - test/rails/app-2.0.2/public/404.html
342
+ - test/rails/app-2.0.2/public/500.html
343
+ - test/rails/app-2.1.2/.gitignore
344
+ - test/rails/app-2.1.2/Rakefile
345
+ - test/rails/app-2.1.2/app/controllers/application.rb
346
+ - test/rails/app-2.1.2/app/controllers/foo_controller.rb
347
+ - test/rails/app-2.1.2/app/helpers/application_helper.rb
348
+ - test/rails/app-2.1.2/config/boot.rb
349
+ - test/rails/app-2.1.2/config/database.yml
350
+ - test/rails/app-2.1.2/config/environment.rb
351
+ - test/rails/app-2.1.2/config/environments/development.rb
352
+ - test/rails/app-2.1.2/config/environments/production.rb
353
+ - test/rails/app-2.1.2/config/routes.rb
354
+ - test/rails/app-2.1.2/db/.gitignore
355
+ - test/rails/app-2.1.2/log/.gitignore
356
+ - test/rails/app-2.1.2/public/404.html
357
+ - test/rails/app-2.1.2/public/500.html
358
+ - test/rails/app-2.2.2/.gitignore
359
+ - test/rails/app-2.2.2/Rakefile
360
+ - test/rails/app-2.2.2/app/controllers/application.rb
361
+ - test/rails/app-2.2.2/app/controllers/foo_controller.rb
362
+ - test/rails/app-2.2.2/app/helpers/application_helper.rb
363
+ - test/rails/app-2.2.2/config/boot.rb
364
+ - test/rails/app-2.2.2/config/database.yml
365
+ - test/rails/app-2.2.2/config/environment.rb
366
+ - test/rails/app-2.2.2/config/environments/development.rb
367
+ - test/rails/app-2.2.2/config/environments/production.rb
368
+ - test/rails/app-2.2.2/config/routes.rb
369
+ - test/rails/app-2.2.2/db/.gitignore
370
+ - test/rails/app-2.2.2/log/.gitignore
371
+ - test/rails/app-2.2.2/public/404.html
372
+ - test/rails/app-2.2.2/public/500.html
373
+ - test/rails/test_rails.rb
374
+ - test/test_helper.rb
375
+ - test/unit/test_configurator.rb
376
+ - test/unit/test_droplet.rb
377
+ - test/unit/test_http_parser.rb
378
+ - test/unit/test_http_parser_ng.rb
379
+ - test/unit/test_http_parser_xftrust.rb
380
+ - test/unit/test_request.rb
381
+ - test/unit/test_response.rb
382
+ - test/unit/test_server.rb
383
+ - test/unit/test_signals.rb
384
+ - test/unit/test_sni_hostnames.rb
385
+ - test/unit/test_socket_helper.rb
386
+ - test/unit/test_stream_input.rb
387
+ - test/unit/test_tee_input.rb
388
+ - test/unit/test_upload.rb
389
+ - test/unit/test_util.rb
390
+ homepage: http://unicorn.bogomips.org/
391
+ licenses: []
392
+ post_install_message:
393
+ rdoc_options:
394
+ - -t
395
+ - ! 'Unicorn: Rack HTTP server for fast clients and Unix'
396
+ - -W
397
+ - http://bogomips.org/unicorn.git/tree/%s
398
+ require_paths:
399
+ - lib
400
+ required_ruby_version: !ruby/object:Gem::Requirement
401
+ none: false
402
+ requirements:
403
+ - - ! '>='
404
+ - !ruby/object:Gem::Version
405
+ version: '0'
406
+ required_rubygems_version: !ruby/object:Gem::Requirement
407
+ none: false
408
+ requirements:
409
+ - - ! '>'
410
+ - !ruby/object:Gem::Version
411
+ version: 1.3.1
412
+ requirements: []
413
+ rubyforge_project: !binary |-
414
+ bW9uZ3JlbA==
415
+ rubygems_version: 1.8.16
416
+ signing_key:
417
+ specification_version: 3
418
+ summary: Rack HTTP server for fast clients and Unix
419
+ test_files:
420
+ - test/unit/test_configurator.rb
421
+ - test/unit/test_http_parser.rb
422
+ - test/unit/test_http_parser_ng.rb
423
+ - test/unit/test_http_parser_xftrust.rb
424
+ - test/unit/test_request.rb
425
+ - test/unit/test_response.rb
426
+ - test/unit/test_server.rb
427
+ - test/unit/test_sni_hostnames.rb
428
+ - test/unit/test_util.rb