opener-daemons 2.6.1 → 2.6.2
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 +5 -5
- data/lib/opener/daemons/version.rb +1 -1
- data/lib/opener/daemons/worker.rb +9 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 97ab9c7926a1d80893358eb056b482e69ae45c788e5a790045ea5157397ab7a9
|
|
4
|
+
data.tar.gz: 0bb6208647d48575a706231cf99853085c55a841e4eaaf460faa7548eb736654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee7b689cd53bf7624b447bab32a7f5e3a5ad50a7700fc8f19b2df1544159d9fe016718455727d428da1e4ca1cef0d247152d0ba233c9a03b67e6e50eb86284d1
|
|
7
|
+
data.tar.gz: 59f9f4ea51f586210141cceae0db61c1443fd383321ce8a12befc28cbf7873467e17ed88181d88dd598e02285e2773fa156bdf8a199186d481233a5ec4c289be
|
|
@@ -126,14 +126,20 @@ module Opener
|
|
|
126
126
|
|
|
127
127
|
private
|
|
128
128
|
|
|
129
|
+
##
|
|
130
|
+
# Preserve input for last callback
|
|
131
|
+
#
|
|
129
132
|
def input_params
|
|
130
|
-
if
|
|
131
|
-
{input: config.input}
|
|
132
|
-
else
|
|
133
|
+
if config.input_url
|
|
133
134
|
{input_url: config.input_url}
|
|
135
|
+
else
|
|
136
|
+
{input: config.input}
|
|
134
137
|
end
|
|
135
138
|
end
|
|
136
139
|
|
|
140
|
+
##
|
|
141
|
+
# Use generated output as new input
|
|
142
|
+
#
|
|
137
143
|
def next_input_params
|
|
138
144
|
if INLINE_IO
|
|
139
145
|
{input: @next_input}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opener-daemons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wilco van Duinkerken
|
|
@@ -261,7 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
261
261
|
version: '0'
|
|
262
262
|
requirements: []
|
|
263
263
|
rubyforge_project:
|
|
264
|
-
rubygems_version: 2.6
|
|
264
|
+
rubygems_version: 2.7.6
|
|
265
265
|
signing_key:
|
|
266
266
|
specification_version: 4
|
|
267
267
|
summary: Toolkit for turning OpeNER components into daemons
|