eventhub-processor2 1.12.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b6bce45652e7273f4bc413483ddba906814f202379b177086eb616f6e87d7a3
4
- data.tar.gz: c74a66fa83f7f674f191dc92b1d4992790b407097b40a5d18182f18e26aef6c3
3
+ metadata.gz: 59fa22757dfa048d6f813dc8f91af801656ca3aea9c3a48d676d456c344cab72
4
+ data.tar.gz: 8f5758e729ed2af3fd7c2d05be0b030e607dd1498ac39f60f62d6ffe82e720e5
5
5
  SHA512:
6
- metadata.gz: aadaf38e8eccf0723ccb51bdd5233f7f5d57ad1e536c9d63714028f769a5da4322e64631480d6bf5d546d8e9b7d2641179054e34af39744e5435bd117f89b15b
7
- data.tar.gz: 90b0052940a20f671e9fe8e1c83f15033a1f8cabb969ac59f02633fe245ad8033b83a2aad855c07dc0b2cea6c88180d20f17e6e8dee5d45a1e00fba5eb18d121
6
+ metadata.gz: 3506d6c2fb6a520f160b416cc44786dd85108256e7a426fc8f6d8b167bcd222eeb76c8576bc92c63b11c5001907e3dd09720dbe8dc0fb7995fa1048b037c31ab
7
+ data.tar.gz: 755339a3b10ec81c84abf9482f60e30a16b302712b69d7d56ebd59ed797b1f037991606270c9ed0f7964593e0b2e484b7226a51fe4cf9d5556a9369afc9f540f
@@ -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.12.0 / 2021-07-26
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.12.0)
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.2.2)
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
  [![Gem Version](https://badge.fury.io/rb/eventhub-processor2.svg)](https://badge.fury.io/rb/eventhub-processor2)
2
+ [![Maintainability](https://api.codeclimate.com/v1/badges/9112358562f0614e0e02/maintainability)](https://codeclimate.com/github/thomis/eventhub-processor2/maintainability)
3
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/9112358562f0614e0e02/test_coverage)](https://codeclimate.com/github/thomis/eventhub-processor2/test_coverage)
2
4
  [![ci](https://github.com/thomis/eventhub-processor2/actions/workflows/ci.yml/badge.svg)](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:
@@ -1,3 +1,3 @@
1
1
  module EventHub
2
- VERSION = "1.12.0".freeze
2
+ VERSION = "1.13.0".freeze
3
3
  end
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.12.0
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-07-27 00:00:00.000000000 Z
11
+ date: 2022-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid