puma 1.6.3 → 2.0.0.b1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puma might be problematic. Click here for more details.
- data/History.txt +13 -0
- data/Manifest.txt +18 -0
- data/Rakefile +6 -0
- data/docs/config.md +0 -0
- data/docs/nginx.md +85 -0
- data/examples/puma/keystore.jks +0 -0
- data/ext/puma_http11/PumaHttp11Service.java +2 -0
- data/ext/puma_http11/extconf.rb +3 -0
- data/ext/puma_http11/io_buffer.c +146 -0
- data/ext/puma_http11/mini_ssl.c +189 -0
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +289 -0
- data/ext/puma_http11/puma_http11.c +6 -0
- data/lib/puma/accept_nonblock.rb +23 -0
- data/lib/puma/binder.rb +253 -0
- data/lib/puma/cli.rb +212 -114
- data/lib/puma/client.rb +28 -3
- data/lib/puma/configuration.rb +11 -4
- data/lib/puma/const.rb +12 -1
- data/lib/puma/delegation.rb +11 -0
- data/lib/puma/events.rb +18 -0
- data/lib/puma/io_buffer.rb +7 -0
- data/lib/puma/java_io_buffer.rb +45 -0
- data/lib/puma/minissl.rb +124 -0
- data/lib/puma/puma_http11.bundle +0 -0
- data/lib/puma/puma_http11.jar +0 -0
- data/lib/puma/reactor.rb +4 -1
- data/lib/puma/server.rb +67 -144
- data/lib/puma/thread_pool.rb +5 -2
- data/puma.gemspec +5 -5
- data/test/test_integration.rb +53 -2
- data/test/test_iobuffer.rb +38 -0
- data/test/test_puma_server.rb +12 -7
- data/tools/jungle/README.md +54 -0
- data/tools/jungle/puma +332 -0
- data/tools/jungle/run-puma +3 -0
- metadata +24 -5
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.0.b1
|
5
|
+
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Evan Phoenix
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-09-
|
12
|
+
date: 2012-09-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rack
|
@@ -122,6 +122,8 @@ files:
|
|
122
122
|
- TODO
|
123
123
|
- bin/puma
|
124
124
|
- bin/pumactl
|
125
|
+
- docs/config.md
|
126
|
+
- docs/nginx.md
|
125
127
|
- examples/CA/cacert.pem
|
126
128
|
- examples/CA/newcerts/cert_1.pem
|
127
129
|
- examples/CA/newcerts/cert_2.pem
|
@@ -130,6 +132,7 @@ files:
|
|
130
132
|
- examples/config.rb
|
131
133
|
- examples/puma/cert_puma.pem
|
132
134
|
- examples/puma/csr_puma.pem
|
135
|
+
- examples/puma/keystore.jks
|
133
136
|
- examples/puma/puma_keypair.pem
|
134
137
|
- examples/qc_config.rb
|
135
138
|
- ext/puma_http11/PumaHttp11Service.java
|
@@ -140,21 +143,32 @@ files:
|
|
140
143
|
- ext/puma_http11/http11_parser.java.rl
|
141
144
|
- ext/puma_http11/http11_parser.rl
|
142
145
|
- ext/puma_http11/http11_parser_common.rl
|
146
|
+
- ext/puma_http11/io_buffer.c
|
147
|
+
- ext/puma_http11/mini_ssl.c
|
143
148
|
- ext/puma_http11/org/jruby/puma/Http11.java
|
144
149
|
- ext/puma_http11/org/jruby/puma/Http11Parser.java
|
150
|
+
- ext/puma_http11/org/jruby/puma/MiniSSL.java
|
145
151
|
- ext/puma_http11/puma_http11.c
|
146
152
|
- lib/puma.rb
|
153
|
+
- lib/puma/accept_nonblock.rb
|
147
154
|
- lib/puma/app/status.rb
|
155
|
+
- lib/puma/binder.rb
|
148
156
|
- lib/puma/cli.rb
|
149
157
|
- lib/puma/client.rb
|
150
158
|
- lib/puma/compat.rb
|
151
159
|
- lib/puma/configuration.rb
|
152
160
|
- lib/puma/const.rb
|
153
161
|
- lib/puma/control_cli.rb
|
162
|
+
- lib/puma/delegation.rb
|
154
163
|
- lib/puma/detect.rb
|
155
164
|
- lib/puma/events.rb
|
165
|
+
- lib/puma/io_buffer.rb
|
166
|
+
- lib/puma/java_io_buffer.rb
|
156
167
|
- lib/puma/jruby_restart.rb
|
168
|
+
- lib/puma/minissl.rb
|
157
169
|
- lib/puma/null_io.rb
|
170
|
+
- lib/puma/puma_http11.bundle
|
171
|
+
- lib/puma/puma_http11.jar
|
158
172
|
- lib/puma/rack_patch.rb
|
159
173
|
- lib/puma/reactor.rb
|
160
174
|
- lib/puma/server.rb
|
@@ -174,6 +188,7 @@ files:
|
|
174
188
|
- test/test_http10.rb
|
175
189
|
- test/test_http11.rb
|
176
190
|
- test/test_integration.rb
|
191
|
+
- test/test_iobuffer.rb
|
177
192
|
- test/test_null_io.rb
|
178
193
|
- test/test_persistent.rb
|
179
194
|
- test/test_puma_server.rb
|
@@ -183,6 +198,9 @@ files:
|
|
183
198
|
- test/test_unix_socket.rb
|
184
199
|
- test/test_ws.rb
|
185
200
|
- test/testhelp.rb
|
201
|
+
- tools/jungle/README.md
|
202
|
+
- tools/jungle/puma
|
203
|
+
- tools/jungle/run-puma
|
186
204
|
- tools/trickletest.rb
|
187
205
|
homepage: http://puma.io
|
188
206
|
licenses: []
|
@@ -201,9 +219,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
201
219
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
202
220
|
none: false
|
203
221
|
requirements:
|
204
|
-
- - ! '
|
222
|
+
- - ! '>'
|
205
223
|
- !ruby/object:Gem::Version
|
206
|
-
version:
|
224
|
+
version: 1.3.1
|
207
225
|
requirements: []
|
208
226
|
rubyforge_project: puma
|
209
227
|
rubygems_version: 1.8.24
|
@@ -218,6 +236,7 @@ test_files:
|
|
218
236
|
- test/test_http10.rb
|
219
237
|
- test/test_http11.rb
|
220
238
|
- test/test_integration.rb
|
239
|
+
- test/test_iobuffer.rb
|
221
240
|
- test/test_null_io.rb
|
222
241
|
- test/test_persistent.rb
|
223
242
|
- test/test_puma_server.rb
|