puma 2.7.0-java → 2.7.1-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 +6 -0
- data/Manifest.txt +0 -1
- data/lib/puma/const.rb +1 -1
- data/lib/puma/daemon_ext.rb +5 -4
- data/lib/puma/puma_http11.jar +0 -0
- metadata +2 -3
- data/TODO +0 -5
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/lib/puma/const.rb
CHANGED
data/lib/puma/daemon_ext.rb
CHANGED
@@ -13,10 +13,11 @@ module Process
|
|
13
13
|
Dir.chdir "/" unless nochdir # Release old working directory.
|
14
14
|
|
15
15
|
if !noclose
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
STDIN.reopen File.open("/dev/null", "r")
|
17
|
+
|
18
|
+
null_out = File.open "/dev/null", "w"
|
19
|
+
STDOUT.reopen null_out
|
20
|
+
STDERR.reopen null_out
|
20
21
|
end
|
21
22
|
|
22
23
|
0
|
data/lib/puma/puma_http11.jar
CHANGED
Binary file
|
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.7.
|
5
|
+
version: 2.7.1
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Evan Phoenix
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-12-
|
12
|
+
date: 2013-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rack
|
@@ -105,7 +105,6 @@ files:
|
|
105
105
|
- Manifest.txt
|
106
106
|
- README.md
|
107
107
|
- Rakefile
|
108
|
-
- TODO
|
109
108
|
- bin/puma
|
110
109
|
- bin/pumactl
|
111
110
|
- docs/config.md
|