eventhub-processor2 1.12.0 → 1.13.0
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/.github/workflows/ci.yml +14 -0
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +2 -2
- data/README.md +11 -0
- data/lib/eventhub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59fa22757dfa048d6f813dc8f91af801656ca3aea9c3a48d676d456c344cab72
|
|
4
|
+
data.tar.gz: 8f5758e729ed2af3fd7c2d05be0b030e607dd1498ac39f60f62d6ffe82e720e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3506d6c2fb6a520f160b416cc44786dd85108256e7a426fc8f6d8b167bcd222eeb76c8576bc92c63b11c5001907e3dd09720dbe8dc0fb7995fa1048b037c31ab
|
|
7
|
+
data.tar.gz: 755339a3b10ec81c84abf9482f60e30a16b302712b69d7d56ebd59ed797b1f037991606270c9ed0f7964593e0b2e484b7226a51fe4cf9d5556a9369afc9f540f
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -18,6 +18,8 @@ on:
|
|
|
18
18
|
jobs:
|
|
19
19
|
build:
|
|
20
20
|
runs-on: ubuntu-latest
|
|
21
|
+
env:
|
|
22
|
+
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
21
23
|
strategy:
|
|
22
24
|
fail-fast: false
|
|
23
25
|
matrix:
|
|
@@ -31,6 +33,7 @@ jobs:
|
|
|
31
33
|
uses: ruby/setup-ruby@v1
|
|
32
34
|
with:
|
|
33
35
|
ruby-version: ${{ matrix.ruby }}
|
|
36
|
+
bundler: latest
|
|
34
37
|
bundler-cache: true
|
|
35
38
|
cache-version: 1
|
|
36
39
|
|
|
@@ -39,6 +42,17 @@ jobs:
|
|
|
39
42
|
cd docker && docker build -t processor-rabbitmq .
|
|
40
43
|
docker run -d -p 5672:5672 -p 15672:15672 --name processor-rabbitmq processor-rabbitmq
|
|
41
44
|
|
|
45
|
+
- name: Code Climate setup test reporter
|
|
46
|
+
run: |
|
|
47
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
48
|
+
chmod +x ./cc-test-reporter
|
|
49
|
+
./cc-test-reporter before-build
|
|
50
|
+
|
|
42
51
|
- name: Run default task
|
|
43
52
|
run: |
|
|
44
53
|
bundle exec rake
|
|
54
|
+
|
|
55
|
+
- name: Code Climate publish test coverage
|
|
56
|
+
run: |
|
|
57
|
+
./cc-test-reporter after-build
|
|
58
|
+
if: github.event_name != 'pull_request'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
# Changelog of EventHub::Processor2
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.13.0 / 2022-08-01
|
|
4
|
+
|
|
5
|
+
* Updated gem dependencies
|
|
6
|
+
|
|
7
|
+
## 1.12.0 / 2022-07-26
|
|
4
8
|
|
|
5
9
|
* Updated gem dependencies
|
|
6
10
|
* Move to GitHub actions
|
|
7
11
|
* Add Dependabot to keep dependencies up-to-date
|
|
8
12
|
* Format corrections
|
|
13
|
+
* Remove support for ruby 2.5
|
|
9
14
|
|
|
10
15
|
## 1.11.0 / 2021-05-01
|
|
11
16
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
eventhub-processor2 (1.
|
|
4
|
+
eventhub-processor2 (1.13.0)
|
|
5
5
|
bunny (~> 2.19)
|
|
6
6
|
celluloid (~> 0.18)
|
|
7
7
|
eventhub-components (~> 0.2)
|
|
@@ -19,7 +19,7 @@ GEM
|
|
|
19
19
|
timers (~> 4)
|
|
20
20
|
diff-lcs (1.5.0)
|
|
21
21
|
docile (1.4.0)
|
|
22
|
-
eventhub-components (0.
|
|
22
|
+
eventhub-components (0.3.1)
|
|
23
23
|
logstash-logger (~> 0.26)
|
|
24
24
|
json (2.6.2)
|
|
25
25
|
logstash-event (1.2.02)
|
data/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
[](https://badge.fury.io/rb/eventhub-processor2)
|
|
2
|
+
[](https://codeclimate.com/github/thomis/eventhub-processor2/maintainability)
|
|
3
|
+
[](https://codeclimate.com/github/thomis/eventhub-processor2/test_coverage)
|
|
2
4
|
[](https://github.com/thomis/eventhub-processor2/actions/workflows/ci.yml)
|
|
3
5
|
|
|
4
6
|
# EventHub::Processor2
|
|
@@ -13,6 +15,15 @@ Processor2 has currently the following sub-components implemented
|
|
|
13
15
|
|
|
14
16
|
Processor2 is using Bunny http://rubybunny.info a feature complete RabbitMQ Client to interact with message broker. Processor2 can deal with long running message processing.
|
|
15
17
|
|
|
18
|
+
## Supported Ruby Versions
|
|
19
|
+
|
|
20
|
+
Currently supported and tested ruby versions are:
|
|
21
|
+
|
|
22
|
+
- 3.1
|
|
23
|
+
- 3.0
|
|
24
|
+
- 2.7
|
|
25
|
+
- 2.6
|
|
26
|
+
|
|
16
27
|
## Installation
|
|
17
28
|
|
|
18
29
|
Add this line to your application's Gemfile:
|
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.13.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: 2022-
|
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: celluloid
|