puma 1.6.3-java → 2.0.0.b1-java
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 -6
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version:
|
4
|
+
prerelease: 6
|
5
|
+
version: 2.0.0.b1
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Evan Phoenix
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-09-
|
13
|
+
date: 2012-09-12 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -86,6 +86,8 @@ files:
|
|
86
86
|
- TODO
|
87
87
|
- bin/puma
|
88
88
|
- bin/pumactl
|
89
|
+
- docs/config.md
|
90
|
+
- docs/nginx.md
|
89
91
|
- examples/CA/cacert.pem
|
90
92
|
- examples/CA/newcerts/cert_1.pem
|
91
93
|
- examples/CA/newcerts/cert_2.pem
|
@@ -94,6 +96,7 @@ files:
|
|
94
96
|
- examples/config.rb
|
95
97
|
- examples/puma/cert_puma.pem
|
96
98
|
- examples/puma/csr_puma.pem
|
99
|
+
- examples/puma/keystore.jks
|
97
100
|
- examples/puma/puma_keypair.pem
|
98
101
|
- examples/qc_config.rb
|
99
102
|
- ext/puma_http11/PumaHttp11Service.java
|
@@ -104,21 +107,32 @@ files:
|
|
104
107
|
- ext/puma_http11/http11_parser.java.rl
|
105
108
|
- ext/puma_http11/http11_parser.rl
|
106
109
|
- ext/puma_http11/http11_parser_common.rl
|
110
|
+
- ext/puma_http11/io_buffer.c
|
111
|
+
- ext/puma_http11/mini_ssl.c
|
107
112
|
- ext/puma_http11/org/jruby/puma/Http11.java
|
108
113
|
- ext/puma_http11/org/jruby/puma/Http11Parser.java
|
114
|
+
- ext/puma_http11/org/jruby/puma/MiniSSL.java
|
109
115
|
- ext/puma_http11/puma_http11.c
|
110
116
|
- lib/puma.rb
|
117
|
+
- lib/puma/accept_nonblock.rb
|
111
118
|
- lib/puma/app/status.rb
|
119
|
+
- lib/puma/binder.rb
|
112
120
|
- lib/puma/cli.rb
|
113
121
|
- lib/puma/client.rb
|
114
122
|
- lib/puma/compat.rb
|
115
123
|
- lib/puma/configuration.rb
|
116
124
|
- lib/puma/const.rb
|
117
125
|
- lib/puma/control_cli.rb
|
126
|
+
- lib/puma/delegation.rb
|
118
127
|
- lib/puma/detect.rb
|
119
128
|
- lib/puma/events.rb
|
129
|
+
- lib/puma/io_buffer.rb
|
130
|
+
- lib/puma/java_io_buffer.rb
|
120
131
|
- lib/puma/jruby_restart.rb
|
132
|
+
- lib/puma/minissl.rb
|
121
133
|
- lib/puma/null_io.rb
|
134
|
+
- lib/puma/puma_http11.bundle
|
135
|
+
- lib/puma/puma_http11.jar
|
122
136
|
- lib/puma/rack_patch.rb
|
123
137
|
- lib/puma/reactor.rb
|
124
138
|
- lib/puma/server.rb
|
@@ -138,6 +152,7 @@ files:
|
|
138
152
|
- test/test_http10.rb
|
139
153
|
- test/test_http11.rb
|
140
154
|
- test/test_integration.rb
|
155
|
+
- test/test_iobuffer.rb
|
141
156
|
- test/test_null_io.rb
|
142
157
|
- test/test_persistent.rb
|
143
158
|
- test/test_puma_server.rb
|
@@ -147,8 +162,10 @@ files:
|
|
147
162
|
- test/test_unix_socket.rb
|
148
163
|
- test/test_ws.rb
|
149
164
|
- test/testhelp.rb
|
165
|
+
- tools/jungle/README.md
|
166
|
+
- tools/jungle/puma
|
167
|
+
- tools/jungle/run-puma
|
150
168
|
- tools/trickletest.rb
|
151
|
-
- lib/puma/puma_http11.jar
|
152
169
|
homepage: http://puma.io
|
153
170
|
licenses: []
|
154
171
|
|
@@ -167,9 +184,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
167
184
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
168
185
|
none: false
|
169
186
|
requirements:
|
170
|
-
- - "
|
187
|
+
- - ">"
|
171
188
|
- !ruby/object:Gem::Version
|
172
|
-
version:
|
189
|
+
version: 1.3.1
|
173
190
|
requirements: []
|
174
191
|
|
175
192
|
rubyforge_project: puma
|
@@ -184,6 +201,7 @@ test_files:
|
|
184
201
|
- test/test_http10.rb
|
185
202
|
- test/test_http11.rb
|
186
203
|
- test/test_integration.rb
|
204
|
+
- test/test_iobuffer.rb
|
187
205
|
- test/test_null_io.rb
|
188
206
|
- test/test_persistent.rb
|
189
207
|
- test/test_puma_server.rb
|