opener-opinion-detector 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/opinion-detector-server +5 -1
- data/lib/opener/opinion_detector/version.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: 0ae3de69cda2c50f6000cc1b10f0fc8e2977a8e0
|
4
|
+
data.tar.gz: 77d74736ed8aeba3bd10bd8ab74d18e5fa35cf55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77a17df4b51c38f1bde5780d1492e680e324a3c0997032fa16f3e8f5364e751c27d4f48f8e1bf30a9ebc29722147a31648285ec3bec839c403350bf093bcf5df
|
7
|
+
data.tar.gz: 20276c643f12ffcd80e755acef9bb204ca0170d2491ddacceac9ba7c380f70b6f04f215f56b759a6d00d5770f95aafe2aec27048f2e88213a848b9d81b62623d
|
data/bin/opinion-detector-server
CHANGED
@@ -47,4 +47,8 @@ option_parser.parse!(ARGV)
|
|
47
47
|
|
48
48
|
switcher.install(switcher_opts)
|
49
49
|
|
50
|
-
Puma
|
50
|
+
# Puma on JRuby does some weird stuff with forking/exec. As a result of this we
|
51
|
+
# *have to* update ARGV as otherwise running Puma as a daemon does not work.
|
52
|
+
ARGV.replace(puma_args)
|
53
|
+
|
54
|
+
Puma::CLI.new(ARGV).run
|