countless 2.3.0 → 2.4.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 -6
- data/CHANGELOG.md +5 -0
- data/Dockerfile +1 -1
- data/Gemfile +1 -1
- data/Makefile +3 -2
- data/countless.gemspec +2 -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/countless/version.rb +1 -1
- metadata +4 -6
- data/gemfiles/rails_6.1.gemfile +0 -21
- data/gemfiles/rails_7.1.gemfile +0 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd8ed037bef1612f355cc630677645ea741b9dad03960ad426e1cc86fbd47518
|
|
4
|
+
data.tar.gz: dd0ae68e5608da67d42405a8b0c6988b2ba9fe65c18ff485c7557487367b8cd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99492280b52a1998b522991a5624852173c584a0b01001506ae8f37fd58ef6a693eb7ba28292aa82f4a774dae6212bcc2c43564dfa6979fa44ad3c870e5e1f01
|
|
7
|
+
data.tar.gz: 53be90fd11a04e213aadcbd526202d3c3bbf32aceb201dc7206b03f9839aea7a1010150e2c2ff1329735e480ebbccfbc2a0ac5e48e209b1475717e3add5b4537
|
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.4.0 (26 December 2025)
|
|
6
|
+
|
|
7
|
+
* Added Ruby 4.0 support ([#18](https://github.com/hausgold/countless/pull/18))
|
|
8
|
+
* Dropped Ruby 3.2 and Rails 7.1 support ([#17](https://github.com/hausgold/countless/pull/17))
|
|
9
|
+
|
|
5
10
|
### 2.3.0 (19 December 2025)
|
|
6
11
|
|
|
7
12
|
* Migrated to a shared Rubocop configuration for HAUSGOLD gems ([#16](https://github.com/hausgold/countless/pull/16))
|
data/Dockerfile
CHANGED
data/Gemfile
CHANGED
data/Makefile
CHANGED
|
@@ -94,7 +94,8 @@ all:
|
|
|
94
94
|
install:
|
|
95
95
|
# Install the dependencies
|
|
96
96
|
@$(MKDIR) -p $(VENDOR_DIR)
|
|
97
|
-
@$(call run-shell,$(BUNDLE)
|
|
97
|
+
@$(call run-shell,$(BUNDLE) config set --local path '$(VENDOR_DIR)')
|
|
98
|
+
@$(call run-shell,$(BUNDLE) check || $(BUNDLE) install)
|
|
98
99
|
@$(call run-shell,$(BUNDLE) exec $(APPRAISAL) install)
|
|
99
100
|
@$(MAKE) --no-print-directory .fetch-cloc
|
|
100
101
|
|
|
@@ -134,7 +135,7 @@ test-style: \
|
|
|
134
135
|
test-style-ruby:
|
|
135
136
|
# Run the static code analyzer (rubocop)
|
|
136
137
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
137
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '3.
|
|
138
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '3.3' && true))
|
|
138
139
|
|
|
139
140
|
clean:
|
|
140
141
|
# Clean the dependencies
|
data/countless.gemspec
CHANGED
|
@@ -32,8 +32,8 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
34
|
|
|
35
|
-
spec.required_ruby_version = '>= 3.
|
|
35
|
+
spec.required_ruby_version = '>= 3.3'
|
|
36
36
|
|
|
37
|
-
spec.add_dependency 'activesupport', '>= 7.
|
|
37
|
+
spec.add_dependency 'activesupport', '>= 7.2'
|
|
38
38
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
|
39
39
|
end
|
data/gemfiles/rails_7.2.gemfile
CHANGED
data/gemfiles/rails_8.0.gemfile
CHANGED
data/gemfiles/rails_8.1.gemfile
CHANGED
data/lib/countless/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: countless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.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: zeitwerk
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -73,8 +73,6 @@ files:
|
|
|
73
73
|
- countless.gemspec
|
|
74
74
|
- doc/assets/project.svg
|
|
75
75
|
- docker-compose.yml
|
|
76
|
-
- gemfiles/rails_6.1.gemfile
|
|
77
|
-
- gemfiles/rails_7.1.gemfile
|
|
78
76
|
- gemfiles/rails_7.2.gemfile
|
|
79
77
|
- gemfiles/rails_8.0.gemfile
|
|
80
78
|
- gemfiles/rails_8.1.gemfile
|
|
@@ -102,7 +100,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
102
100
|
requirements:
|
|
103
101
|
- - ">="
|
|
104
102
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: '3.
|
|
103
|
+
version: '3.3'
|
|
106
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
105
|
requirements:
|
|
108
106
|
- - ">="
|
data/gemfiles/rails_6.1.gemfile
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "benchmark-ips", "~> 2.10"
|
|
7
|
-
gem "bundler", "~> 2.3"
|
|
8
|
-
gem "guard-rspec", "~> 4.7"
|
|
9
|
-
gem "irb", "~> 1.2"
|
|
10
|
-
gem "rspec", "~> 3.12"
|
|
11
|
-
gem "rubocop"
|
|
12
|
-
gem "rubocop-rails"
|
|
13
|
-
gem "rubocop-rspec"
|
|
14
|
-
gem "simplecov", ">= 0.22"
|
|
15
|
-
gem "yard", ">= 0.9.28"
|
|
16
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
17
|
-
gem "activejob", "~> 6.1.0"
|
|
18
|
-
gem "activerecord", "~> 6.1.0"
|
|
19
|
-
gem "activesupport", "~> 6.1.0"
|
|
20
|
-
|
|
21
|
-
gemspec path: "../"
|
data/gemfiles/rails_7.1.gemfile
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "appraisal", "~> 2.4"
|
|
6
|
-
gem "benchmark-ips", "~> 2.10"
|
|
7
|
-
gem "bundler", "~> 2.6"
|
|
8
|
-
gem "guard-rspec", "~> 4.7"
|
|
9
|
-
gem "irb", "~> 1.2"
|
|
10
|
-
gem "rspec", "~> 3.12"
|
|
11
|
-
gem "rubocop"
|
|
12
|
-
gem "rubocop-rails"
|
|
13
|
-
gem "rubocop-rspec"
|
|
14
|
-
gem "simplecov", ">= 0.22"
|
|
15
|
-
gem "yard", ">= 0.9.28"
|
|
16
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
17
|
-
gem "activejob", "~> 7.1.0"
|
|
18
|
-
gem "activerecord", "~> 7.1.0"
|
|
19
|
-
gem "activesupport", "~> 7.1.0"
|
|
20
|
-
|
|
21
|
-
gemspec path: "../"
|