countless 2.10.0 → 2.11.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 +3 -3
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +2 -2
- data/Appraisals +0 -6
- data/CHANGELOG.md +4 -0
- data/Dockerfile +3 -3
- data/Makefile +1 -1
- data/countless.gemspec +2 -2
- data/lib/countless/version.rb +1 -1
- metadata +5 -6
- data/gemfiles/rails_8.0.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: 6fda060b4d3da9d7d73429cc5f9f81d505a280957079a53a52a8c60e0d1db70e
|
|
4
|
+
data.tar.gz: d35b674bec7942bd03ecd02cc495212ca3b7041872b26d346f0070052abfdd0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7b471490e0e4bec16e6fa5050b191602c6aec57f2caebb0fd544238b9a3f31dce11e830383061b501c9f3e44d2e65ca2d95597cceba12201643c3db2861315c
|
|
7
|
+
data.tar.gz: 1fb2a642571b23f476195dfe8e2cbd3eed01d7966f95d91e86ff35c19a52fcd62dd100e675e7739fa5d84f9e88498b4d81a163abff80ee407d3f7c4e09c60011
|
|
@@ -26,12 +26,12 @@ jobs:
|
|
|
26
26
|
settings: '${{ github.repository }}'
|
|
27
27
|
target: ci/gem-test
|
|
28
28
|
|
|
29
|
-
- name: Install Ruby
|
|
29
|
+
- name: Install Ruby 4.0
|
|
30
30
|
uses: ruby/setup-ruby@v1
|
|
31
31
|
with:
|
|
32
|
-
ruby-version:
|
|
32
|
+
ruby-version: 4.0
|
|
33
33
|
bundler-cache: true
|
|
34
|
-
rubygems: '
|
|
34
|
+
rubygems: '4.0.11'
|
|
35
35
|
|
|
36
36
|
- name: Switch to SSH remotes for the Git repository
|
|
37
37
|
run: git-ssh-remotes
|
data/.github/workflows/test.yml
CHANGED
|
@@ -18,8 +18,8 @@ jobs:
|
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
|
-
ruby: ['
|
|
22
|
-
rails: ['8.
|
|
21
|
+
ruby: ['4.0']
|
|
22
|
+
rails: ['8.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
38
|
bundler-cache: true
|
|
39
|
-
rubygems: '
|
|
39
|
+
rubygems: '4.0.11'
|
|
40
40
|
|
|
41
41
|
- name: Run the gem tests
|
|
42
42
|
run: make test
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 2.11.0 (4 May 2026)
|
|
6
|
+
|
|
7
|
+
* Dropped Ruby 3.x and Rails <8.1 support ([#26](https://github.com/hausgold/countless/pull/26))
|
|
8
|
+
|
|
5
9
|
### 2.10.0 (16 March 2026)
|
|
6
10
|
|
|
7
11
|
* Corrected some RuboCop issues ([#25](https://github.com/hausgold/countless/pull/25))
|
data/Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
FROM hausgold/ruby:
|
|
1
|
+
FROM hausgold/ruby:4.0
|
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '
|
|
5
|
+
RUN gem update --system '4.0.11'
|
|
6
6
|
|
|
7
7
|
# Install system packages and the latest bundler
|
|
8
8
|
RUN apt-get update -yqqq && \
|
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
|
11
11
|
ca-certificates \
|
|
12
12
|
bash-completion inotify-tools && \
|
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
14
|
-
gem install bundler -v '~>
|
|
14
|
+
gem install bundler -v '~> 4.0.11' --no-document --no-prerelease
|
|
15
15
|
|
|
16
16
|
# Add new web user
|
|
17
17
|
RUN mkdir /app && \
|
data/Makefile
CHANGED
|
@@ -135,7 +135,7 @@ test-style: \
|
|
|
135
135
|
test-style-ruby:
|
|
136
136
|
# Run the static code analyzer (rubocop)
|
|
137
137
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
138
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '
|
|
138
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '4.0' && true))
|
|
139
139
|
|
|
140
140
|
clean:
|
|
141
141
|
# Clean the dependencies
|
data/countless.gemspec
CHANGED
|
@@ -32,9 +32,9 @@ 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 = '>=
|
|
35
|
+
spec.required_ruby_version = '>= 4.0'
|
|
36
36
|
|
|
37
|
-
spec.add_dependency 'activesupport', '>= 8.
|
|
37
|
+
spec.add_dependency 'activesupport', '>= 8.1'
|
|
38
38
|
spec.add_dependency 'logger', '~> 1.7'
|
|
39
39
|
spec.add_dependency 'ostruct', '>= 0.6'
|
|
40
40
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
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.11.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: '8.
|
|
18
|
+
version: '8.1'
|
|
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: '8.
|
|
25
|
+
version: '8.1'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: logger
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -101,7 +101,6 @@ files:
|
|
|
101
101
|
- countless.gemspec
|
|
102
102
|
- doc/assets/project.svg
|
|
103
103
|
- docker-compose.yml
|
|
104
|
-
- gemfiles/rails_8.0.gemfile
|
|
105
104
|
- gemfiles/rails_8.1.gemfile
|
|
106
105
|
- lib/countless.rb
|
|
107
106
|
- lib/countless/annotations.rb
|
|
@@ -127,14 +126,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
127
126
|
requirements:
|
|
128
127
|
- - ">="
|
|
129
128
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '
|
|
129
|
+
version: '4.0'
|
|
131
130
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
131
|
requirements:
|
|
133
132
|
- - ">="
|
|
134
133
|
- !ruby/object:Gem::Version
|
|
135
134
|
version: '0'
|
|
136
135
|
requirements: []
|
|
137
|
-
rubygems_version:
|
|
136
|
+
rubygems_version: 4.0.11
|
|
138
137
|
specification_version: 4
|
|
139
138
|
summary: Code statistics/annotations helpers
|
|
140
139
|
test_files: []
|
data/gemfiles/rails_8.0.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", "< 5"
|
|
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", "~> 8.0.0"
|
|
18
|
-
gem "activerecord", "~> 8.0.0"
|
|
19
|
-
gem "activesupport", "~> 8.0.0"
|
|
20
|
-
|
|
21
|
-
gemspec path: "../"
|