eventhub-processor2 1.17.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.gitignore +1 -0
- data/.tool-versions +1 -0
- data/CHANGELOG.md +8 -0
- data/eventhub-processor2.gemspec +2 -2
- data/lib/eventhub/configuration.rb +1 -1
- data/lib/eventhub/message.rb +1 -1
- data/lib/eventhub/version.rb +1 -1
- metadata +7 -7
- data/Gemfile.lock +0 -99
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '052794836cc75c8908c03f61cc5381717d5ed76985f7d3c949fa9dbe7d55b32f'
|
4
|
+
data.tar.gz: b92271dc527b40b66b6005b7a0547c77b224b0e90be973ccadaa57705ab6789a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d9aec7ca4a1f60f33ea8d07307d262e9999bedc5c285bb7369dc3667be2916e8e73b9597ab72a65837bf6a7a7de8c107e1a7f365cc17ae064f4f2e3453bf6f5
|
7
|
+
data.tar.gz: ff0a4e5bb9a261838913fbd6265ac796901ed23285e9f0c3e167082a8eb1f16e457b79aaad697d97acf4293690ccad2e50d4da93ff411a13a25f730360c4cfbf
|
data/.github/workflows/ci.yml
CHANGED
data/.gitignore
CHANGED
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.2.2
|
data/CHANGELOG.md
CHANGED
data/eventhub-processor2.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
|
30
30
|
spec.add_development_dependency "bundler", "~> 2.3"
|
31
31
|
spec.add_development_dependency "rake", "~> 13.0"
|
32
|
-
spec.add_development_dependency "rspec", "~> 3.
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.12"
|
33
33
|
spec.add_development_dependency "simplecov", "~> 0.21"
|
34
|
-
spec.add_development_dependency "standard", "~> 1.
|
34
|
+
spec.add_development_dependency "standard", "~> 1.28"
|
35
35
|
end
|
data/lib/eventhub/message.rb
CHANGED
@@ -145,7 +145,7 @@ module EventHub
|
|
145
145
|
end
|
146
146
|
|
147
147
|
def append_to_execution_history(processor_name)
|
148
|
-
header.set("execution_history", []) unless
|
148
|
+
header.set("execution_history", []) unless
|
149
149
|
header.get("execution_history")
|
150
150
|
header.get("execution_history") << \
|
151
151
|
{"processor" => processor_name, "timestamp" => now_stamp}
|
data/lib/eventhub/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eventhub-processor2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steiner, Thomas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: celluloid
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '3.
|
103
|
+
version: '3.12'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '3.
|
110
|
+
version: '3.12'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: simplecov
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: '1.
|
131
|
+
version: '1.28'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: '1.
|
138
|
+
version: '1.28'
|
139
139
|
description: Next generation gem to build ruby based eventhub processor
|
140
140
|
email:
|
141
141
|
- thomas.steiner@ikey.ch
|
@@ -148,9 +148,9 @@ files:
|
|
148
148
|
- ".github/workflows/ci.yml"
|
149
149
|
- ".gitignore"
|
150
150
|
- ".rspec"
|
151
|
+
- ".tool-versions"
|
151
152
|
- CHANGELOG.md
|
152
153
|
- Gemfile
|
153
|
-
- Gemfile.lock
|
154
154
|
- LICENSE.txt
|
155
155
|
- README.md
|
156
156
|
- Rakefile
|
data/Gemfile.lock
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
eventhub-processor2 (1.17.0)
|
5
|
-
bunny (~> 2.20)
|
6
|
-
celluloid (~> 0.18)
|
7
|
-
eventhub-components (~> 0.2)
|
8
|
-
uuidtools (~> 2.1)
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
amq-protocol (2.3.2)
|
14
|
-
ast (2.4.2)
|
15
|
-
bunny (2.20.1)
|
16
|
-
amq-protocol (~> 2.3, >= 2.3.1)
|
17
|
-
sorted_set (~> 1, >= 1.0.2)
|
18
|
-
celluloid (0.18.0)
|
19
|
-
timers (~> 4)
|
20
|
-
diff-lcs (1.5.0)
|
21
|
-
docile (1.4.0)
|
22
|
-
eventhub-components (0.3.1)
|
23
|
-
logstash-logger (~> 0.26)
|
24
|
-
json (2.6.3)
|
25
|
-
language_server-protocol (3.17.0.2)
|
26
|
-
logstash-event (1.2.02)
|
27
|
-
logstash-logger (0.26.1)
|
28
|
-
logstash-event (~> 1.2)
|
29
|
-
parallel (1.22.1)
|
30
|
-
parser (3.1.3.0)
|
31
|
-
ast (~> 2.4.1)
|
32
|
-
rainbow (3.1.1)
|
33
|
-
rake (13.0.6)
|
34
|
-
rbtree (0.4.6)
|
35
|
-
regexp_parser (2.6.1)
|
36
|
-
rexml (3.2.5)
|
37
|
-
rspec (3.12.0)
|
38
|
-
rspec-core (~> 3.12.0)
|
39
|
-
rspec-expectations (~> 3.12.0)
|
40
|
-
rspec-mocks (~> 3.12.0)
|
41
|
-
rspec-core (3.12.0)
|
42
|
-
rspec-support (~> 3.12.0)
|
43
|
-
rspec-expectations (3.12.1)
|
44
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
45
|
-
rspec-support (~> 3.12.0)
|
46
|
-
rspec-mocks (3.12.1)
|
47
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.12.0)
|
49
|
-
rspec-support (3.12.0)
|
50
|
-
rubocop (1.40.0)
|
51
|
-
json (~> 2.3)
|
52
|
-
parallel (~> 1.10)
|
53
|
-
parser (>= 3.1.2.1)
|
54
|
-
rainbow (>= 2.2.2, < 4.0)
|
55
|
-
regexp_parser (>= 1.8, < 3.0)
|
56
|
-
rexml (>= 3.2.5, < 4.0)
|
57
|
-
rubocop-ast (>= 1.23.0, < 2.0)
|
58
|
-
ruby-progressbar (~> 1.7)
|
59
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
60
|
-
rubocop-ast (1.24.0)
|
61
|
-
parser (>= 3.1.1.0)
|
62
|
-
rubocop-performance (1.15.1)
|
63
|
-
rubocop (>= 1.7.0, < 2.0)
|
64
|
-
rubocop-ast (>= 0.4.0)
|
65
|
-
ruby-progressbar (1.11.0)
|
66
|
-
set (1.0.3)
|
67
|
-
simplecov (0.21.2)
|
68
|
-
docile (~> 1.1)
|
69
|
-
simplecov-html (~> 0.11)
|
70
|
-
simplecov_json_formatter (~> 0.1)
|
71
|
-
simplecov-html (0.12.3)
|
72
|
-
simplecov_json_formatter (0.1.4)
|
73
|
-
sorted_set (1.0.3)
|
74
|
-
rbtree
|
75
|
-
set (~> 1.0)
|
76
|
-
standard (1.20.0)
|
77
|
-
language_server-protocol (~> 3.17.0.2)
|
78
|
-
rubocop (= 1.40.0)
|
79
|
-
rubocop-performance (= 1.15.1)
|
80
|
-
timers (4.3.5)
|
81
|
-
unicode-display_width (2.3.0)
|
82
|
-
uuidtools (2.2.0)
|
83
|
-
|
84
|
-
PLATFORMS
|
85
|
-
arm64-darwin-21
|
86
|
-
ruby
|
87
|
-
x86_64-darwin-18
|
88
|
-
x86_64-linux
|
89
|
-
|
90
|
-
DEPENDENCIES
|
91
|
-
bundler (~> 2.3)
|
92
|
-
eventhub-processor2!
|
93
|
-
rake (~> 13.0)
|
94
|
-
rspec (~> 3.11)
|
95
|
-
simplecov (~> 0.21)
|
96
|
-
standard (~> 1.20)
|
97
|
-
|
98
|
-
BUNDLED WITH
|
99
|
-
2.3.26
|