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.

@@ -1,3 +1,9 @@
1
+ === 2.7.1 / 2013-12-05
2
+
3
+ * 1 bug fix:
4
+
5
+ * Keep STDOUT/STDERR the right mode. Fixes #422
6
+
1
7
  === 2.7.0 / 2013-12-03
2
8
 
3
9
  * 1 minor feature:
@@ -5,7 +5,6 @@ LICENSE
5
5
  Manifest.txt
6
6
  README.md
7
7
  Rakefile
8
- TODO
9
8
  bin/puma
10
9
  bin/pumactl
11
10
  docs/config.md
@@ -28,7 +28,7 @@ module Puma
28
28
  # too taxing on performance.
29
29
  module Const
30
30
 
31
- PUMA_VERSION = VERSION = "2.7.0".freeze
31
+ PUMA_VERSION = VERSION = "2.7.1".freeze
32
32
  CODE_NAME = "Earl of Sandwich Partition"
33
33
 
34
34
  FAST_TRACK_KA_TIMEOUT = 0.2
@@ -13,10 +13,11 @@ module Process
13
13
  Dir.chdir "/" unless nochdir # Release old working directory.
14
14
 
15
15
  if !noclose
16
- null = File.open "/dev/null", "w+"
17
- STDIN.reopen null
18
- STDOUT.reopen null
19
- STDERR.reopen null
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
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.0
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-04 00:00:00.000000000 Z
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
data/TODO DELETED
@@ -1,5 +0,0 @@
1
-
2
- v1.2. Rewrite and merge mongrel cluster and mongrel_rails into something small and maintainable. Remove gem_plugin entirely.
3
-
4
- v1.1.1. See if Java is setting the server version string in the request properly.
5
-