billomat 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: c5207ff86ffae0adc27256cdd5b11c8fe077863af6bbd506026884756bb86b81
4
- data.tar.gz: dce3876b2653f45df09bf925e31732f8b0a0d6de4f079f17aeebbefc85ccd300
3
+ metadata.gz: 812ae7210435ec4772e01a44b63a7d58ea4956f45406cbf99897b21b36e319f0
4
+ data.tar.gz: '0789d34a5a7b5ff82c750d3f68d0c2d0971b277a9e08da59b09d3b8160e7a99a'
5
5
  SHA512:
6
- metadata.gz: 7264f9c83528a4afa9abc39ce41030cdb22f03645e2b817c3b68dac26640dd21b409ec9b5db2d8029a6432812c88741fcdd73a436f43a8d58ee91c25c3549236
7
- data.tar.gz: 92080b6e738669d1feb50ed9de5395f38296918d9119acce0df3230c8e39f28c6aea1a242e949e2c91d8272ee838d6710e7aba850ab9ef9576f9bdb1f1532c0f
6
+ metadata.gz: 89c7c6050be15c3d76f648ddfc7158fbc1b349a7a5288592906c613fac1b4bb55cb32f974c4fdc61210d6fb83f964ccd3da3e2304e89831cd2f9a76d25c83ab6
7
+ data.tar.gz: 6217f95095e778bbcb9eacbd650a5aced9e774fe8f3c72ad7b741ba82cbeed00e2341d06b56aa755c2897d26cfeb713f239b7784c7db1a684c2009239f787a44
@@ -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
 
@@ -19,7 +19,7 @@ jobs:
19
19
  fail-fast: false
20
20
  matrix:
21
21
  ruby: ['3.2', '3.3', '3.4']
22
- rails: ['7.1', '7.2', '8.0']
22
+ rails: ['7.1', '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
@@ -13,7 +13,7 @@ AllCops:
13
13
  SuggestExtensions: false
14
14
  DisplayCopNames: true
15
15
  TargetRubyVersion: 3.2
16
- TargetRailsVersion: 6.1
16
+ TargetRailsVersion: 7.1
17
17
  Exclude:
18
18
  - bin/**/*
19
19
  - vendor/**/*
data/Appraisals CHANGED
@@ -11,3 +11,7 @@ end
11
11
  appraise 'rails-8.0' do
12
12
  gem 'activesupport', '~> 8.0.0'
13
13
  end
14
+
15
+ appraise 'rails-8.1' do
16
+ gem 'activesupport', '~> 8.1.0'
17
+ end
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 (24 October 2025)
6
+
7
+ * Dropped Reek ([#35](https://github.com/hausgold/billomat/pull/35))
8
+ * Added support for Rails 8.1 ([#36](https://github.com/hausgold/billomat/pull/36))
9
+
5
10
  ### 2.0.0 (28 June 2025)
6
11
 
7
12
  * Corrected some RuboCop glitches ([#33](https://github.com/hausgold/billomat/pull/33))
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.6"
7
+ gem "countless", "~> 2.0"
8
+ gem "guard-rspec", "~> 4.7"
9
+ gem "irb", "~> 1.2"
10
+ gem "rake", "~> 13.0"
11
+ gem "rspec", "~> 3.12"
12
+ gem "rubocop"
13
+ gem "rubocop-rails"
14
+ gem "rubocop-rspec"
15
+ gem "simplecov", ">= 0.22"
16
+ gem "yard", ">= 0.9.28"
17
+ gem "yard-activesupport-concern", ">= 0.0.1"
18
+ gem "activesupport", "~> 8.1.0"
19
+
20
+ gemspec path: "../"
@@ -104,8 +104,6 @@ module Billomat
104
104
  end
105
105
 
106
106
  # @return [Billomat::Configuration] the global gem configuration
107
- #
108
- # :reek:UtilityFunction because it's a shorthand
109
107
  def config
110
108
  Billomat.configuration
111
109
  end
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Billomat
5
5
  # The version of the +billomat+ 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: billomat
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
@@ -91,6 +91,7 @@ files:
91
91
  - gemfiles/rails_7.1.gemfile
92
92
  - gemfiles/rails_7.2.gemfile
93
93
  - gemfiles/rails_8.0.gemfile
94
+ - gemfiles/rails_8.1.gemfile
94
95
  - lib/billomat.rb
95
96
  - lib/billomat/actions/cancel.rb
96
97
  - lib/billomat/actions/complete.rb