countless 1.3.4 → 1.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/test.yml +1 -1
- data/.rubocop.yml +1 -1
- data/.yardopts +1 -0
- data/Appraisals +0 -6
- data/CHANGELOG.md +12 -8
- data/countless.gemspec +2 -2
- data/lib/countless/version.rb +1 -1
- metadata +4 -5
- data/gemfiles/rails_5.2.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: e38e18baad6136a6dc68572e4e7b195fbf9fd9cb9040009801ef7cda0c6e18ed
|
|
4
|
+
data.tar.gz: e088ad059c5311cab4c6151124cf670cc1a083ff55a214600e867b6d48d20657
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 356da39529136df07c7851f9dfe05cbe251da855972be70e8f217659e7d9fcd0e9e4ea87b90558ed810fe5b9f249427be38aaad6bc908d7b03a6092372083826
|
|
7
|
+
data.tar.gz: 78b42cc84d45e6ea22f9a193005b1d6e3910337d6cc90423b92069fd56379c59f3a39682f9a751cf6307775f73b1dc8c635e7d849ea10f51eb1ce34bbefd1287
|
data/.github/workflows/test.yml
CHANGED
data/.rubocop.yml
CHANGED
data/.yardopts
CHANGED
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,32 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
-
### 1.3
|
|
5
|
+
### 1.4.0 (3 January 2025)
|
|
6
|
+
|
|
7
|
+
* Raised minimum supported Ruby/Rails version to 2.7/6.1 (#5)
|
|
8
|
+
|
|
9
|
+
### 1.3.4 (15 August 2024)
|
|
6
10
|
|
|
7
11
|
* Just a retag of 1.3.1
|
|
8
12
|
|
|
9
|
-
### 1.3.3
|
|
13
|
+
### 1.3.3 (15 August 2024)
|
|
10
14
|
|
|
11
15
|
* Just a retag of 1.3.1
|
|
12
16
|
|
|
13
|
-
### 1.3.2
|
|
17
|
+
### 1.3.2 (9 August 2024)
|
|
14
18
|
|
|
15
19
|
* Just a retag of 1.3.1
|
|
16
20
|
|
|
17
|
-
### 1.3.1
|
|
21
|
+
### 1.3.1 (9 August 2024)
|
|
18
22
|
|
|
19
23
|
* Added API docs building to continuous integration (#4)
|
|
20
24
|
|
|
21
|
-
### 1.3.0
|
|
25
|
+
### 1.3.0 (8 July 2024)
|
|
22
26
|
|
|
23
27
|
* Moved the development dependencies from the gemspec to the Gemfile (#2)
|
|
24
28
|
* Dropped support for Ruby <2.7 (#3)
|
|
25
29
|
|
|
26
|
-
### 1.2.0
|
|
30
|
+
### 1.2.0 (24 February 2023)
|
|
27
31
|
|
|
28
32
|
* Added support for Gem release automation
|
|
29
33
|
|
|
30
|
-
### 1.1.0
|
|
34
|
+
### 1.1.0 (18 January 2023)
|
|
31
35
|
|
|
32
36
|
* Bundler >= 2.3 is from now on required as minimal version (#1)
|
|
33
37
|
* Dropped support for Ruby < 2.5 (#1)
|
|
@@ -35,7 +39,7 @@
|
|
|
35
39
|
* Updated all development/runtime gems to their latest
|
|
36
40
|
Ruby 2.5 compatible version (#1)
|
|
37
41
|
|
|
38
|
-
### 1.0.0
|
|
42
|
+
### 1.0.0 (11 January 2022)
|
|
39
43
|
|
|
40
44
|
* Initial gem implementation
|
|
41
45
|
* Documented the whole gem and all its features
|
data/countless.gemspec
CHANGED
|
@@ -34,6 +34,6 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
|
|
35
35
|
spec.required_ruby_version = '>= 2.7'
|
|
36
36
|
|
|
37
|
-
spec.
|
|
38
|
-
spec.
|
|
37
|
+
spec.add_dependency 'activesupport', '>= 6.1'
|
|
38
|
+
spec.add_dependency 'zeitwerk', '~> 2.6'
|
|
39
39
|
end
|
data/lib/countless/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: countless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '6.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '6.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: zeitwerk
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,7 +74,6 @@ files:
|
|
|
74
74
|
- countless.gemspec
|
|
75
75
|
- doc/assets/project.svg
|
|
76
76
|
- docker-compose.yml
|
|
77
|
-
- gemfiles/rails_5.2.gemfile
|
|
78
77
|
- gemfiles/rails_6.1.gemfile
|
|
79
78
|
- gemfiles/rails_7.1.gemfile
|
|
80
79
|
- lib/countless.rb
|
data/gemfiles/rails_5.2.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", "~> 1.28"
|
|
12
|
-
gem "rubocop-rails", "~> 2.14"
|
|
13
|
-
gem "rubocop-rspec", "~> 2.10"
|
|
14
|
-
gem "simplecov", ">= 0.22"
|
|
15
|
-
gem "yard", ">= 0.9.28"
|
|
16
|
-
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
17
|
-
gem "activejob", "~> 5.2.0"
|
|
18
|
-
gem "activerecord", "~> 5.2.0"
|
|
19
|
-
gem "activesupport", "~> 5.2.0"
|
|
20
|
-
|
|
21
|
-
gemspec path: "../"
|