countless 2.0.0 → 2.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b67ae45b4a8679fe8b9dbf384149c1fd3b26c780e6907d7412fd43f69097eaa2
4
- data.tar.gz: f3cbc1403a7cf3a7fdf57999a890932a63595844266e234c5bb903d5dc25465e
3
+ metadata.gz: a713ecaff32d04b28d10f95940be65cdc3c040b118fcdf842b92d044c10f2797
4
+ data.tar.gz: 3c6e382a39a84ffe35cdfa21f0b53d40bd17dbc9b5f85ca1cfb5ddb9ed4884c2
5
5
  SHA512:
6
- metadata.gz: 2d6f47151bea448085de0670e45e063294225103656a42a7981043c6060456da84da87511212990ac0918cb4e7a34788167278c3a83273a5070cc5a0a017a001
7
- data.tar.gz: a33f4f04e11242ea7a00eefb05a2d28c01eeb6833c280c0754097afde02b2d488648efcdefbc2ab07b322cd1dcd3f23a2ab6eb0c93329f6106993c36c37f47b1
6
+ metadata.gz: bf0e605819c6cc9bc3373c059f0e2c1a6d8aa54cb9a30b8a6ba9aba25e9e4662de5aef81f663c0aed16910217b9638fa5cff175f229d35936f6eda1bc54c90f9
7
+ data.tar.gz: a23aa5c83dcfeac17405ecf7f1476f99a0776668a1a3a562d72630432919b1f88477b04391078150a151e553c5cfdef513acbea1e141d8e55c6c04e31f54093f
@@ -16,7 +16,7 @@ jobs:
16
16
  docs:
17
17
  name: Release the gem
18
18
  runs-on: ubuntu-22.04
19
- timeout-minutes: 5
19
+ timeout-minutes: 10
20
20
  steps:
21
21
  - uses: actions/checkout@v4
22
22
 
data/.rubocop.yml CHANGED
@@ -10,7 +10,7 @@ AllCops:
10
10
  SuggestExtensions: false
11
11
  DisplayCopNames: true
12
12
  TargetRubyVersion: 3.2
13
- TargetRailsVersion: 6.1
13
+ TargetRailsVersion: 7.1
14
14
  Exclude:
15
15
  - bin/**/*
16
16
  - vendor/**/*
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.1.0 (17 October 2025)
6
+
7
+ * Removed the require of `rspec/core/rake_task` on our Rake tasks file, as it's
8
+ no runtime dependency ([#13](https://github.com/hausgold/countless/pull/13))
9
+
5
10
  ### 2.0.0 (28 June 2025)
6
11
 
7
12
  * Corrected some RuboCop glitches ([#11](https://github.com/hausgold/countless/pull/11))
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'rspec/core/rake_task'
4
-
5
3
  desc 'Report code statistics (KLOCs, etc)'
6
4
  task :stats do
7
5
  puts Countless::Statistics.new
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Countless
5
5
  # The version of the +countless+ gem
6
- VERSION = '2.0.0'
6
+ VERSION = '2.1.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
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.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer