opener-daemons 2.0.1 → 2.0.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 +4 -4
- data/lib/opener/daemons/version.rb +1 -1
- data/opener-daemons.gemspec +1 -0
- data/schema/sqs_input.json +30 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03b7be7e62ee26df448d1eab7ef16b439fc68200
|
|
4
|
+
data.tar.gz: ecee4827ada3b9b70d5411628b2eebf48a955e2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcf4c032d995b86df844c3fed445c56292e4a7139f74c153aa968f018a0dcfc1a240b500c74f516b10f16fc538de4cb6f15bc7326154d0055ac2a7d474dbc5e3
|
|
7
|
+
data.tar.gz: c4f90bac71ab8ca51dbc92eaac7c107c226f005754932dfa96006faa520072bbee58a58a7474f5d5b1dbb0e57594f517648e7f9dffe5a6d3526ef3f4b636af31
|
data/opener-daemons.gemspec
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
3
|
+
"title": "opener-daemons",
|
|
4
|
+
"description": "Schema for SQS input messages",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"input_url": {
|
|
8
|
+
"description": "URL to the KAF document to process",
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
"identifier": {
|
|
13
|
+
"description": "A unique identifier to associate with the document",
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
"callbacks": {
|
|
18
|
+
"description": "An Array of URLs to submit the result to",
|
|
19
|
+
"type": "array",
|
|
20
|
+
"minItems": 1
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
"metadata": {
|
|
24
|
+
"description": "Extra metadata to pass along to each output URL",
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": true
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"required": ["input_url", "callbacks"]
|
|
30
|
+
}
|
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.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wilco van Duinkerken
|
|
@@ -195,6 +195,7 @@ files:
|
|
|
195
195
|
- lib/opener/daemons/version.rb
|
|
196
196
|
- lib/opener/daemons/worker.rb
|
|
197
197
|
- opener-daemons.gemspec
|
|
198
|
+
- schema/sqs_input.json
|
|
198
199
|
homepage: http://opener-project.github.io
|
|
199
200
|
licenses:
|
|
200
201
|
- Apache 2.0
|