puma 2.13.3 → 2.13.4

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: acbb1042d04d79823317ca4fa3d5b2d3ab861e22
4
- data.tar.gz: d5b4df24f2250b28596d618d74840ab74b19069f
3
+ metadata.gz: c6d1f76be9cff6f4869f548f8a79ffd38f7aca1e
4
+ data.tar.gz: 9b9f96f22bddf25bda4781383ae1a27de6c14d79
5
5
  SHA512:
6
- metadata.gz: 276e89c0792300cf7c3bfdb0c2df7ce52babbd5d4b8e5fca722cf3fc6f653c4ec52e880d7b46b1494b6474f4982c5de865f6acd6498ff0bfde94bc8651b1b168
7
- data.tar.gz: 995a25cdf59737d196398623b7afc480bf22b066f9df0988a77803d52d8ca00d2749f4ea78cd64dcc1fee161da18c4b848f5596e91752ea803fe16854edfb56c
6
+ metadata.gz: 1cbeaf17fc7745c596966329be4d8b49b0b350764102cf59a11f7d921309c2372803183da84ee55acbd1e2682193b0bef6c933b73ccfaf75a04b0200adc71851
7
+ data.tar.gz: e0e9447ad29dd98c3bef95080ec873ba28238b0a54dc1c2ec2639dbdae7029f59bd302cfabb893d2649126b3bb34a6616402b927a49ada0967bd58f1c6a248ae
@@ -1,3 +1,9 @@
1
+ === 2.13.4 / 2015-08-16
2
+
3
+ * 1 bug fix:
4
+ * Use the environment possible set by the config early and from
5
+ the config file later (if set).
6
+
1
7
  === 2.13.3 / 2015-08-15
2
8
 
3
9
  Seriously, I need to revamp config with tests.
@@ -96,7 +96,7 @@ module Puma
96
96
  end
97
97
 
98
98
  def env
99
- @cli_options[:environment] || ENV['RACK_ENV'] || 'development'
99
+ @options[:environment] || @cli_options[:environment] || ENV['RACK_ENV'] || 'development'
100
100
  end
101
101
 
102
102
  def write_state
@@ -301,6 +301,7 @@ module Puma
301
301
 
302
302
  def setup_options
303
303
  @cli_options = {}
304
+ @options = {}
304
305
 
305
306
  @parser = OptionParser.new do |o|
306
307
  o.on "-b", "--bind URI", "URI to bind to (tcp://, unix://, ssl://)" do |arg|
@@ -99,7 +99,7 @@ module Puma
99
99
  # too taxing on performance.
100
100
  module Const
101
101
 
102
- PUMA_VERSION = VERSION = "2.13.3".freeze
102
+ PUMA_VERSION = VERSION = "2.13.4".freeze
103
103
  CODE_NAME = "A Midsummer Code's Dream".freeze
104
104
 
105
105
  FAST_TRACK_KA_TIMEOUT = 0.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.13.3
4
+ version: 2.13.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Phoenix