countless 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb9c1a5b2f1d61e6df2669e554d239b9aa82ab600dc6962db6efbdc67b2ea752
4
- data.tar.gz: 2fcf5ef387406342947a231393d83cdcc0b24fa91e51223595b883442f2c5e98
3
+ metadata.gz: b9e583ddd2bec2bc8df819485445b64e87aeb17642c3e0a61ed04809fcd09921
4
+ data.tar.gz: 5ff75e3663cfc93d3373f9705b9be7a2bd4e22a50e0de43435e21f2e02dd042f
5
5
  SHA512:
6
- metadata.gz: 82fc5ba48431ad3b5d8d9e33dd39771d84504a9823e7924e7f484c0e08c69634dc2aa7a11cde9de3376ee4c567ee51658ef2a827bbf1f6e608f1a8c00468fe1a
7
- data.tar.gz: ef4a8b87864099b1953b92d5aebb9addb5bf5afd5ae2548f3b748a4be2f6d0b6a5ad245952b50b97c0d7d4ac4eedc49a3e12234d932e0e687c3d5e93769370b7
6
+ metadata.gz: 1b4fb71fefe65c7776d4c62f9ee71fdd1403303ef0ba63c0941bc82c4f3b9d8649470001a040d006763c9e7594b3f2f5708029396fa8488ee7c7dec2b63a7c0d
7
+ data.tar.gz: 67e31ccb82edb32dfd9915af1afcfedd5a7085a3f0bedb0191804a0daf3922a0edeb9fd88df293e82d4a42789028599c65a52a1b2df010ce2790918e2888fdca
@@ -18,7 +18,7 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['2.7', '3.0', '3.1']
21
+ ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
22
22
  rails: ['6.1', '7.1']
23
23
  env:
24
24
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
data/CHANGELOG.md CHANGED
@@ -2,13 +2,21 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.5.0 (30 January 2025)
6
+
7
+ * Added all versions up to Ruby 3.4 to the CI matrix ([#8](https://github.com/hausgold/countless/pull/8))
8
+
9
+ ### 1.4.2 (17 January 2025)
10
+
11
+ * Added the logger dependency, see: https://bit.ly/3E8Zqg0 ([#7](https://github.com/hausgold/countless/pull/7))
12
+
5
13
  ### 1.4.1 (13 January 2025)
6
14
 
7
- * Do not eager load the configuration (#6)
15
+ * Do not eager load the configuration ([#6](https://github.com/hausgold/countless/pull/6))
8
16
 
9
17
  ### 1.4.0 (3 January 2025)
10
18
 
11
- * Raised minimum supported Ruby/Rails version to 2.7/6.1 (#5)
19
+ * Raised minimum supported Ruby/Rails version to 2.7/6.1 ([#5](https://github.com/hausgold/countless/pull/5))
12
20
 
13
21
  ### 1.3.4 (15 August 2024)
14
22
 
@@ -24,12 +32,12 @@
24
32
 
25
33
  ### 1.3.1 (9 August 2024)
26
34
 
27
- * Added API docs building to continuous integration (#4)
35
+ * Added API docs building to continuous integration ([#4](https://github.com/hausgold/countless/pull/4))
28
36
 
29
37
  ### 1.3.0 (8 July 2024)
30
38
 
31
- * Moved the development dependencies from the gemspec to the Gemfile (#2)
32
- * Dropped support for Ruby <2.7 (#3)
39
+ * Moved the development dependencies from the gemspec to the Gemfile ([#2](https://github.com/hausgold/countless/pull/2))
40
+ * Dropped support for Ruby <2.7 ([#3](https://github.com/hausgold/countless/pull/3))
33
41
 
34
42
  ### 1.2.0 (24 February 2023)
35
43
 
@@ -37,11 +45,11 @@
37
45
 
38
46
  ### 1.1.0 (18 January 2023)
39
47
 
40
- * Bundler >= 2.3 is from now on required as minimal version (#1)
41
- * Dropped support for Ruby < 2.5 (#1)
42
- * Dropped support for Rails < 5.2 (#1)
48
+ * Bundler >= 2.3 is from now on required as minimal version ([#1](https://github.com/hausgold/countless/pull/1))
49
+ * Dropped support for Ruby < 2.5 ([#1](https://github.com/hausgold/countless/pull/1))
50
+ * Dropped support for Rails < 5.2 ([#1](https://github.com/hausgold/countless/pull/1))
43
51
  * Updated all development/runtime gems to their latest
44
- Ruby 2.5 compatible version (#1)
52
+ Ruby 2.5 compatible version ([#1](https://github.com/hausgold/countless/pull/1))
45
53
 
46
54
  ### 1.0.0 (11 January 2022)
47
55
 
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Countless
5
5
  # The version of the +countless+ gem
6
- VERSION = '1.4.1'
6
+ VERSION = '1.5.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/countless.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'zeitwerk'
4
+ require 'logger'
4
5
  require 'active_support'
5
6
  require 'active_support/concern'
6
7
  require 'active_support/core_ext/module/delegation'
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.1
4
+ version: 1.5.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: 2025-01-13 00:00:00.000000000 Z
11
+ date: 2025-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  requirements: []
112
- rubygems_version: 3.3.26
112
+ rubygems_version: 3.4.22
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Code statistics/annotations helpers