Skip to content

Commit c1cfd8d

Browse files
committed
Added support for Rails 8.1.
Signed-off-by: Hermann Mayer <[email protected]>
1 parent d9a8cbf commit c1cfd8d

File tree

5 files changed

+31
-3
lines changed

5 files changed

+31
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
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']
2323
env:
2424
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
2525
steps:

Appraisals

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ appraise 'rails-8.0' do
1717
gem 'activerecord', '~> 8.0.0'
1818
gem 'activesupport', '~> 8.0.0'
1919
end
20+
21+
appraise 'rails-8.1' do
22+
gem 'activejob', '~> 8.1.0'
23+
gem 'activerecord', '~> 8.1.0'
24+
gem 'activesupport', '~> 8.1.0'
25+
end

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### next
22

3-
* TODO: Replace this bullet point with an actual description of a change.
3+
* Added support for Rails 8.1 (#14)
44

55
### 2.0.0 (28 June 2025)
66

boltless.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.required_ruby_version = '>= 3.2'
3434

3535
spec.add_dependency 'activesupport', '>= 7.1'
36-
spec.add_dependency 'base64', '~> 0.2.0'
36+
spec.add_dependency 'base64', '>= 0.3'
3737
spec.add_dependency 'colorize', '>= 0.8.0'
3838
spec.add_dependency 'connection_pool', '~> 2.3'
3939
spec.add_dependency 'fast_jsonparser', '>= 0.6.0'

gemfiles/rails_8.1.gemfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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"
8+
gem "countless", "~> 2.0"
9+
gem "guard-rspec", "~> 4.7"
10+
gem "irb", "~> 1.2"
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 "activejob", "~> 8.1.0"
19+
gem "activerecord", "~> 8.1.0"
20+
gem "activesupport", "~> 8.1.0"
21+
22+
gemspec path: "../"

0 commit comments

Comments
 (0)