rimless 2.2.0 → 2.3.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/release.yml +2 -2
- data/.github/workflows/test.yml +2 -2
- data/.rubocop.yml +2 -2
- data/Appraisals +0 -5
- data/CHANGELOG.md +5 -0
- data/Dockerfile +1 -1
- data/Gemfile +2 -2
- data/Makefile +3 -2
- data/gemfiles/rails_7.2.gemfile +1 -1
- data/gemfiles/rails_8.0.gemfile +1 -1
- data/gemfiles/rails_8.1.gemfile +1 -1
- data/lib/rimless/version.rb +1 -1
- data/rimless.gemspec +2 -2
- metadata +4 -6
- data/gemfiles/rails_6.1.gemfile +0 -24
- data/gemfiles/rails_7.1.gemfile +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec328917bdc0618ce84c72c949db89d1c01c27114be364f47342b9261ec31dab
|
|
4
|
+
data.tar.gz: 82a68647eb697e0391520145a487ba504120614b35e2af9d0db8fd25641b8709
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dbaf2947ef1c9dde5af3d11980d48b7a1f7fea2246599cc3ee71126a2048bda66ea7126b382ad734442e35b662a0bcda294f21bf5b3cc5bbd8ce331e35d420c
|
|
7
|
+
data.tar.gz: 2466292029a418e11d9fbea7b3a533853662a8a8131a625a853a3aa7104a7a3dcd80f3a5671257b874373173b496af0f72e7e93ee1e632c3185c942c1eb1f926
|
data/.github/workflows/test.yml
CHANGED
|
@@ -18,8 +18,8 @@ jobs:
|
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
|
-
ruby: ['3.
|
|
22
|
-
rails: ['7.
|
|
21
|
+
ruby: ['3.3', '3.4', '4.0']
|
|
22
|
+
rails: ['7.2', '8.0', '8.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 2.3.0 (26 December 2025)
|
|
6
|
+
|
|
7
|
+
* Added Ruby 4.0 support ([#64](https://github.com/hausgold/rimless/pull/64))
|
|
8
|
+
* Dropped Ruby 3.2 and Rails 7.1 support ([#63](https://github.com/hausgold/rimless/pull/63))
|
|
9
|
+
|
|
5
10
|
### 2.2.0 (19 December 2025)
|
|
6
11
|
|
|
7
12
|
* Migrated to a shared Rubocop configuration for HAUSGOLD gems ([#62](https://github.com/hausgold/rimless/pull/62))
|
data/Dockerfile
CHANGED
data/Gemfile
CHANGED
|
@@ -9,11 +9,11 @@ gemspec
|
|
|
9
9
|
|
|
10
10
|
# Development dependencies
|
|
11
11
|
gem 'appraisal', '~> 2.4'
|
|
12
|
-
gem 'bundler', '
|
|
12
|
+
gem 'bundler', '>= 2.6', '< 5'
|
|
13
13
|
gem 'countless', '~> 2.2'
|
|
14
14
|
gem 'factory_bot', '~> 6.2'
|
|
15
15
|
gem 'guard-rspec', '~> 4.7'
|
|
16
|
-
gem 'railties', '>= 7.
|
|
16
|
+
gem 'railties', '>= 7.2'
|
|
17
17
|
gem 'rake', '~> 13.0'
|
|
18
18
|
gem 'redcarpet', '~> 3.5'
|
|
19
19
|
gem 'rspec', '~> 3.12'
|
data/Makefile
CHANGED
|
@@ -85,7 +85,8 @@ all:
|
|
|
85
85
|
install:
|
|
86
86
|
# Install the dependencies
|
|
87
87
|
@$(MKDIR) -p $(VENDOR_DIR)
|
|
88
|
-
@$(call run-shell,$(BUNDLE)
|
|
88
|
+
@$(call run-shell,$(BUNDLE) config set --local path '$(VENDOR_DIR)')
|
|
89
|
+
@$(call run-shell,$(BUNDLE) check || $(BUNDLE) install)
|
|
89
90
|
@$(call run-shell,$(BUNDLE) exec $(APPRAISAL) install)
|
|
90
91
|
|
|
91
92
|
update:
|
|
@@ -117,7 +118,7 @@ test-style: \
|
|
|
117
118
|
test-style-ruby:
|
|
118
119
|
# Run the static code analyzer (rubocop)
|
|
119
120
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
120
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '3.
|
|
121
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '3.3' && true))
|
|
121
122
|
|
|
122
123
|
clean:
|
|
123
124
|
# Clean the dependencies
|
data/gemfiles/rails_7.2.gemfile
CHANGED
data/gemfiles/rails_8.0.gemfile
CHANGED
data/gemfiles/rails_8.1.gemfile
CHANGED
data/lib/rimless/version.rb
CHANGED
data/rimless.gemspec
CHANGED
|
@@ -33,9 +33,9 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
34
34
|
spec.require_paths = ['lib']
|
|
35
35
|
|
|
36
|
-
spec.required_ruby_version = '>= 3.
|
|
36
|
+
spec.required_ruby_version = '>= 3.3'
|
|
37
37
|
|
|
38
|
-
spec.add_dependency 'activesupport', '>= 7.
|
|
38
|
+
spec.add_dependency 'activesupport', '>= 7.2'
|
|
39
39
|
spec.add_dependency 'avro_turf', '~> 0.11.0'
|
|
40
40
|
spec.add_dependency 'karafka', '~> 1.4', '< 1.4.15'
|
|
41
41
|
spec.add_dependency 'karafka-sidekiq-backend', '~> 1.4'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rimless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '7.
|
|
18
|
+
version: '7.2'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '7.
|
|
25
|
+
version: '7.2'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: avro_turf
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -241,8 +241,6 @@ files:
|
|
|
241
241
|
- doc/kafka-playground/docker-compose.yml
|
|
242
242
|
- doc/kafka-playground/examples/rimless-produce
|
|
243
243
|
- docker-compose.yml
|
|
244
|
-
- gemfiles/rails_6.1.gemfile
|
|
245
|
-
- gemfiles/rails_7.1.gemfile
|
|
246
244
|
- gemfiles/rails_7.2.gemfile
|
|
247
245
|
- gemfiles/rails_8.0.gemfile
|
|
248
246
|
- gemfiles/rails_8.1.gemfile
|
|
@@ -289,7 +287,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
289
287
|
requirements:
|
|
290
288
|
- - ">="
|
|
291
289
|
- !ruby/object:Gem::Version
|
|
292
|
-
version: '3.
|
|
290
|
+
version: '3.3'
|
|
293
291
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
294
292
|
requirements:
|
|
295
293
|
- - ">="
|
data/gemfiles/rails_6.1.gemfile
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "bundler", "~> 2.3"
|
|
7
|
-
gem "countless", "~> 1.1"
|
|
8
|
-
gem "factory_bot", "~> 6.2"
|
|
9
|
-
gem "guard-rspec", "~> 4.7"
|
|
10
|
-
gem "railties", "~> 6.1.0"
|
|
11
|
-
gem "rake", "~> 13.0"
|
|
12
|
-
gem "redcarpet", "~> 3.5"
|
|
13
|
-
gem "rspec", "~> 3.12"
|
|
14
|
-
gem "rubocop"
|
|
15
|
-
gem "rubocop-rails"
|
|
16
|
-
gem "rubocop-rspec"
|
|
17
|
-
gem "simplecov", ">= 0.22"
|
|
18
|
-
gem "timecop", ">= 0.9.6"
|
|
19
|
-
gem "vcr", "~> 6.0"
|
|
20
|
-
gem "yard", ">= 0.9.28"
|
|
21
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
22
|
-
gem "activesupport", "~> 6.1.0"
|
|
23
|
-
|
|
24
|
-
gemspec path: "../"
|
data/gemfiles/rails_7.1.gemfile
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "bundler", "~> 2.6"
|
|
7
|
-
gem "countless", "~> 2.2"
|
|
8
|
-
gem "factory_bot", "~> 6.2"
|
|
9
|
-
gem "guard-rspec", "~> 4.7"
|
|
10
|
-
gem "railties", "~> 7.1.0"
|
|
11
|
-
gem "rake", "~> 13.0"
|
|
12
|
-
gem "redcarpet", "~> 3.5"
|
|
13
|
-
gem "rspec", "~> 3.12"
|
|
14
|
-
gem "rubocop"
|
|
15
|
-
gem "rubocop-rails"
|
|
16
|
-
gem "rubocop-rspec"
|
|
17
|
-
gem "simplecov", ">= 0.22"
|
|
18
|
-
gem "timecop", ">= 0.9.6"
|
|
19
|
-
gem "vcr", "~> 6.0"
|
|
20
|
-
gem "yard", ">= 0.9.28"
|
|
21
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
22
|
-
gem "activesupport", "~> 7.1.0"
|
|
23
|
-
|
|
24
|
-
gemspec path: "../"
|