eventhub-processor2 1.12.0 → 1.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b6bce45652e7273f4bc413483ddba906814f202379b177086eb616f6e87d7a3
4
- data.tar.gz: c74a66fa83f7f674f191dc92b1d4992790b407097b40a5d18182f18e26aef6c3
3
+ metadata.gz: 63994a9bb3cf0e002546113db2c18fee304251211edbb8784039f66bd582d950
4
+ data.tar.gz: 703844c08f046c9ef0a069a5e24520424bdd8b50feac36f7c2e3d76bc0fbf46c
5
5
  SHA512:
6
- metadata.gz: aadaf38e8eccf0723ccb51bdd5233f7f5d57ad1e536c9d63714028f769a5da4322e64631480d6bf5d546d8e9b7d2641179054e34af39744e5435bd117f89b15b
7
- data.tar.gz: 90b0052940a20f671e9fe8e1c83f15033a1f8cabb969ac59f02633fe245ad8033b83a2aad855c07dc0b2cea6c88180d20f17e6e8dee5d45a1e00fba5eb18d121
6
+ metadata.gz: b7b9ac0a13e4b0690ef01a8275eae2a99eb656991e71ef66a350ffd50af8a9e82b0b96c322fb0b9025c5ef1e6db028ebc77079449da8bd03b53dd09819e122f8
7
+ data.tar.gz: 5b5b1a3a67f82f04effcef779e2a81c1c48612b5ede7b3ad9ab7d04020952528befa7cf7b8dd3f63369699be04012738c39551a877697db16f94e27a5ee00fcb
@@ -1,6 +1,9 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: 'bundler'
4
- directory: '/'
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
5
  schedule:
6
- interval: 'weekly'
6
+ interval: "weekly"
7
+ day: "saturday"
8
+ time: "04:00"
9
+ timezone: "Europe/Zurich"
@@ -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,14 +33,26 @@ 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
- cache-version: 1
38
+ cache-version: 2
36
39
 
37
40
  - name: Setup RabbitMQ
38
41
  run: |
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,20 @@
1
1
  # Changelog of EventHub::Processor2
2
2
 
3
- ## 1.12.0 / 2021-07-26
3
+ ## 1.14.2 / 2022-10-11
4
+
5
+ * Updated gem dependencies
6
+
7
+ ## 1.13.0 / 2022-08-01
8
+
9
+ * Updated gem dependencies
10
+
11
+ ## 1.12.0 / 2022-07-26
4
12
 
5
13
  * Updated gem dependencies
6
14
  * Move to GitHub actions
7
15
  * Add Dependabot to keep dependencies up-to-date
8
16
  * Format corrections
17
+ * Remove support for ruby 2.5
9
18
 
10
19
  ## 1.11.0 / 2021-05-01
11
20
 
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.14.2)
5
5
  bunny (~> 2.19)
6
6
  celluloid (~> 0.18)
7
7
  eventhub-components (~> 0.2)
@@ -19,19 +19,19 @@ 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)
26
26
  logstash-logger (0.26.1)
27
27
  logstash-event (~> 1.2)
28
28
  parallel (1.22.1)
29
- parser (3.1.2.0)
29
+ parser (3.1.2.1)
30
30
  ast (~> 2.4.1)
31
31
  rainbow (3.1.1)
32
32
  rake (13.0.6)
33
33
  rbtree (0.4.5)
34
- regexp_parser (2.5.0)
34
+ regexp_parser (2.6.0)
35
35
  rexml (3.2.5)
36
36
  rspec (3.11.0)
37
37
  rspec-core (~> 3.11.0)
@@ -39,30 +39,30 @@ GEM
39
39
  rspec-mocks (~> 3.11.0)
40
40
  rspec-core (3.11.0)
41
41
  rspec-support (~> 3.11.0)
42
- rspec-expectations (3.11.0)
42
+ rspec-expectations (3.11.1)
43
43
  diff-lcs (>= 1.2.0, < 2.0)
44
44
  rspec-support (~> 3.11.0)
45
45
  rspec-mocks (3.11.1)
46
46
  diff-lcs (>= 1.2.0, < 2.0)
47
47
  rspec-support (~> 3.11.0)
48
- rspec-support (3.11.0)
49
- rubocop (1.32.0)
48
+ rspec-support (3.11.1)
49
+ rubocop (1.35.1)
50
50
  json (~> 2.3)
51
51
  parallel (~> 1.10)
52
- parser (>= 3.1.0.0)
52
+ parser (>= 3.1.2.1)
53
53
  rainbow (>= 2.2.2, < 4.0)
54
54
  regexp_parser (>= 1.8, < 3.0)
55
55
  rexml (>= 3.2.5, < 4.0)
56
- rubocop-ast (>= 1.19.1, < 2.0)
56
+ rubocop-ast (>= 1.20.1, < 2.0)
57
57
  ruby-progressbar (~> 1.7)
58
58
  unicode-display_width (>= 1.4.0, < 3.0)
59
- rubocop-ast (1.19.1)
59
+ rubocop-ast (1.21.0)
60
60
  parser (>= 3.1.1.0)
61
61
  rubocop-performance (1.14.3)
62
62
  rubocop (>= 1.7.0, < 2.0)
63
63
  rubocop-ast (>= 0.4.0)
64
64
  ruby-progressbar (1.11.0)
65
- set (1.0.2)
65
+ set (1.0.3)
66
66
  simplecov (0.21.2)
67
67
  docile (~> 1.1)
68
68
  simplecov-html (~> 0.11)
@@ -72,11 +72,11 @@ GEM
72
72
  sorted_set (1.0.3)
73
73
  rbtree
74
74
  set (~> 1.0)
75
- standard (1.14.0)
76
- rubocop (= 1.32.0)
75
+ standard (1.16.1)
76
+ rubocop (= 1.35.1)
77
77
  rubocop-performance (= 1.14.3)
78
- timers (4.3.3)
79
- unicode-display_width (2.2.0)
78
+ timers (4.3.4)
79
+ unicode-display_width (2.3.0)
80
80
  uuidtools (2.2.0)
81
81
 
82
82
  PLATFORMS
@@ -90,7 +90,7 @@ DEPENDENCIES
90
90
  rake (~> 13.0)
91
91
  rspec (~> 3.11)
92
92
  simplecov (~> 0.21)
93
- standard (~> 1.14)
93
+ standard (~> 1.16)
94
94
 
95
95
  BUNDLED WITH
96
- 2.3.18
96
+ 2.3.19
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:
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
31
31
  spec.add_development_dependency "rake", "~> 13.0"
32
32
  spec.add_development_dependency "rspec", "~> 3.11"
33
33
  spec.add_development_dependency "simplecov", "~> 0.21"
34
- spec.add_development_dependency "standard", "~> 1.14"
34
+ spec.add_development_dependency "standard", "~> 1.16"
35
35
  end
@@ -1,3 +1,3 @@
1
1
  module EventHub
2
- VERSION = "1.12.0".freeze
2
+ VERSION = "1.14.2".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.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steiner, Thomas
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-27 00:00:00.000000000 Z
11
+ date: 2022-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '1.14'
131
+ version: '1.16'
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.14'
138
+ version: '1.16'
139
139
  description: Next generation gem to build ruby based eventhub processor
140
140
  email:
141
141
  - thomas.steiner@ikey.ch
@@ -191,7 +191,7 @@ homepage: https://github.com/thomis/eventhub-processor2
191
191
  licenses:
192
192
  - MIT
193
193
  metadata: {}
194
- post_install_message:
194
+ post_install_message:
195
195
  rdoc_options: []
196
196
  require_paths:
197
197
  - lib
@@ -207,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
207
  version: '0'
208
208
  requirements: []
209
209
  rubygems_version: 3.3.7
210
- signing_key:
210
+ signing_key:
211
211
  specification_version: 4
212
212
  summary: Next generation gem to build ruby based eventhub processor
213
213
  test_files: []