foobara-rack-connector 0.0.9 → 0.0.10
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/foobara/command_connectors/http/puma_runner.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '014284f75f85a75b6db0ef8bc7f608830a41f5b6f59c3f03912b1c4ecb8dc68a'
|
4
|
+
data.tar.gz: dfc5980382756a6623984550e71bcdd101c9f2ae6eac3183f4c51357ee3680a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26df81e37bc49c8391ebc5923e514608318f002b36257a00b8e7cd161520c66f713bbf804e0e52a2b64b9dc6b9c75225c2c21021f07a28c49c6b130b56ac0d83
|
7
|
+
data.tar.gz: fc1faef3576946e6485921c2509587a7bd82fb02bd7fce79737cfdc3735ccb717acf2eee0ed35d4c9a6270f293d7bd4bc5e214a1b6e58d2f8559c73731fe19d4
|
data/CHANGELOG.md
CHANGED
@@ -4,12 +4,12 @@ module Foobara
|
|
4
4
|
class Rack < Http
|
5
5
|
# Just a convenience method for demos. In real projects use rackup/config.ru
|
6
6
|
# or set it all up with `foob g rack-connector`
|
7
|
-
def run_puma
|
7
|
+
def run_puma(**)
|
8
8
|
# :nocov:
|
9
9
|
require "puma"
|
10
10
|
require "rack/handler/puma"
|
11
11
|
|
12
|
-
::Rack::Handler::Puma.run(self)
|
12
|
+
::Rack::Handler::Puma.run(self, **)
|
13
13
|
# :nocov:
|
14
14
|
end
|
15
15
|
end
|