puma 2.2.2-java → 2.3.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of puma might be problematic. Click here for more details.

@@ -8,9 +8,9 @@ class TestThreadPool < Test::Unit::TestCase
8
8
  @pool.shutdown if @pool
9
9
  end
10
10
 
11
- def new_pool(min, max, &blk)
12
- blk = proc { } unless blk
13
- @pool = Puma::ThreadPool.new(min, max, &blk)
11
+ def new_pool(min, max, &block)
12
+ block = proc { } unless block
13
+ @pool = Puma::ThreadPool.new(min, max, &block)
14
14
  end
15
15
 
16
16
  def pause
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.2.2
5
+ version: 2.3.0
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-07-02 00:00:00.000000000 Z
12
+ date: 2013-07-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack