puma 2.13.1 → 2.13.2
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 +7 -0
- data/lib/puma/cli.rb +2 -1
- data/lib/puma/const.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdbc061e34a0cc80c0405b05fac30ebd22bd2013
|
4
|
+
data.tar.gz: 1eb02f2124e501114ebbcf79e00a7f3f607d36b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc5bb0d2d344a65c6216de2b2f4b582ef9a42c5b646240eec1b41aca600b31e568a4490d29d1a20076be341a270711e012ae3e69ee2db25abf5b9adf753cd5b3
|
7
|
+
data.tar.gz: ac14ddda277d46d161239c47000910e0d17dfe15dfe4dddf45ad4268c435ce0e40616b32e69f587ea23ba116142a3ec8708bc8b85a65b21784f91951efb0192e
|
data/History.txt
CHANGED
data/lib/puma/cli.rb
CHANGED
@@ -350,7 +350,8 @@ module Puma
|
|
350
350
|
|
351
351
|
o.on "-p", "--port PORT", "Define the TCP port to bind to",
|
352
352
|
"Use -b for more advanced options" do |arg|
|
353
|
-
@cli_options[:binds]
|
353
|
+
binds = (@cli_options[:binds] ||= [])
|
354
|
+
binds << "tcp://#{Configuration::DefaultTCPHost}:#{arg}"
|
354
355
|
end
|
355
356
|
|
356
357
|
o.on "--pidfile PATH", "Use PATH as a pidfile" do |arg|
|
data/lib/puma/const.rb
CHANGED