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 +4 -4
- data/History.txt +10 -0
- data/README.md +1 -1
- data/lib/puma/cli.rb +5 -0
- data/lib/puma/cluster.rb +1 -1
- data/lib/puma/const.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b495e74e45d4bc182f179febf4fa01f881fbf44
|
4
|
+
data.tar.gz: 664e64737272b0befe90f6bbc4b4502116a8a31d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bad4f3bd1ab507047f9021b038ef81ecd6062f4eacf287e15f8a3d12bc7656de793eae2f96dbd0ee4e69ca052bd043a5ad1a67a4085f8290286557b977885f6
|
7
|
+
data.tar.gz: 8eb7a622f1286d3f076f146ca0a2a1da38c0647836c8e23b27d4a8aafb221d2d365dceaf9cfe9bbab413e1d45ce38cdd8f98b7c7f36947a4ec8a406fb19b312b
|
data/History.txt
CHANGED
@@ -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
|
|
data/lib/puma/cli.rb
CHANGED
@@ -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(":")
|
data/lib/puma/cluster.rb
CHANGED
@@ -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"
|
data/lib/puma/const.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2015-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|