puma 2.11.0 → 2.11.1

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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e1ad09e6adf2941686edf7a317cfabf117d6dc9
4
- data.tar.gz: aace15466553dbf47588663c2d72fce3e2a300c9
3
+ metadata.gz: 4b495e74e45d4bc182f179febf4fa01f881fbf44
4
+ data.tar.gz: 664e64737272b0befe90f6bbc4b4502116a8a31d
5
5
  SHA512:
6
- metadata.gz: 5ac4aebd582d8f25e19b74840b7c47f8959ded867413966e56df5b97dc54e2b3e6dc2762ddae777e4826038d5ebb35d61a0a9811dd847ac6617b3586b5d47c00
7
- data.tar.gz: dcb9ef0b1a9cff3e869e65dab007953177e6e3fc4e4ada116228f05cb446655f83cca4945c4b512c9c608aba9bedf78de3a3168a970200cf248227183e32ac8e
6
+ metadata.gz: 6bad4f3bd1ab507047f9021b038ef81ecd6062f4eacf287e15f8a3d12bc7656de793eae2f96dbd0ee4e69ca052bd043a5ad1a67a4085f8290286557b977885f6
7
+ data.tar.gz: 8eb7a622f1286d3f076f146ca0a2a1da38c0647836c8e23b27d4a8aafb221d2d365dceaf9cfe9bbab413e1d45ce38cdd8f98b7c7f36947a4ec8a406fb19b312b
@@ -1,3 +1,13 @@
1
+ === 2.11.1 / 2015-02-11
2
+
3
+ * 2 bug fixes:
4
+ * Avoid crash in strange restart conditions
5
+ * Inject the GEM_HOME that bundler into puma-wild's env. Fixes #653
6
+
7
+ * 2 PRs merged:
8
+ * Merge pull request #644 from bpaquet/master
9
+ * Merge pull request #646 from mkonecny/master
10
+
1
11
  === 2.11.0 / 2015-01-20
2
12
 
3
13
  * 9 bug fixes:
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Puma: A Ruby Web Server Built For Concurrency
2
2
 
3
- [![Build Status](https://secure.travis-ci.org/puma/puma.png)](http://travis-ci.org/puma/puma) [![Dependency Status](https://gemnasium.com/puma/puma.png)](https://gemnasium.com/puma/puma) <a href="https://codeclimate.com/github/puma/puma"><img src="https://codeclimate.com/github/puma/puma.png" /></a>
3
+ [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/puma/puma?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Build Status](https://secure.travis-ci.org/puma/puma.png)](http://travis-ci.org/puma/puma) [![Dependency Status](https://gemnasium.com/puma/puma.png)](https://gemnasium.com/puma/puma) <a href="https://codeclimate.com/github/puma/puma"><img src="https://codeclimate.com/github/puma/puma.png" /></a>
4
4
 
5
5
  ## Description
6
6
 
@@ -473,8 +473,13 @@ module Puma
473
473
 
474
474
  if puma_lib_dir
475
475
  log "* Pruning Bundler environment"
476
+
477
+ home = ENV['GEM_HOME']
478
+
476
479
  Bundler.with_clean_env do
477
480
 
481
+ ENV['GEM_HOME'] = home
482
+
478
483
  wild = File.expand_path(File.join(puma_lib_dir, "../bin/puma-wild"))
479
484
 
480
485
  wild_loadpath = dirs.join(":")
@@ -307,7 +307,7 @@ module Puma
307
307
  if threads.first.respond_to? :backtrace
308
308
  log "! WARNING: Detected #{after.size-before.size} Thread(s) started in app boot:"
309
309
  threads.each do |t|
310
- log "! #{t.inspect} - #{t.backtrace.first}"
310
+ log "! #{t.inspect} - #{t.backtrace ? t.backtrace.first : ''}"
311
311
  end
312
312
  else
313
313
  log "! WARNING: Detected #{after.size-before.size} Thread(s) started in app boot"
@@ -28,7 +28,7 @@ module Puma
28
28
  # too taxing on performance.
29
29
  module Const
30
30
 
31
- PUMA_VERSION = VERSION = "2.11.0".freeze
31
+ PUMA_VERSION = VERSION = "2.11.1".freeze
32
32
  CODE_NAME = "Intrepid Squirrel".freeze
33
33
 
34
34
  FAST_TRACK_KA_TIMEOUT = 0.2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.0
4
+ version: 2.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Phoenix
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-20 00:00:00.000000000 Z
11
+ date: 2015-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack