Skip to content

Commit 075e168

Browse files
authored
Added support for Rails 8.1. (#24)
Signed-off-by: Hermann Mayer <hermann.mayer92@gmail.com>
1 parent e56fbc1 commit 075e168

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ end
1111
appraise 'rails-8.0' do
1212
gem 'activesupport', '~> 8.0.0'
1313
end
14+
15+
appraise 'rails-8.1' do
16+
gem 'activesupport', '~> 8.1.0'
17+
end

CHANGELOG.md

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

3+
* Added support for Rails 8.1 (#24)
34
* Dropped Reek (#22)
45

56
### 2.0.0 (28 June 2025)

gemfiles/rails_8.1.gemfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 "factory_bot", "~> 6.2"
9+
gem "guard-rspec", "~> 4.7"
10+
gem "railties", ">= 7.1"
11+
gem "rake", "~> 13.0"
12+
gem "redcarpet", "~> 3.5"
13+
gem "rspec", "~> 3.12"
14+
gem "rspec-json_expectations", "~> 2.2"
15+
gem "rubocop"
16+
gem "rubocop-rails"
17+
gem "rubocop-rspec"
18+
gem "simplecov", ">= 0.22"
19+
gem "terminal-table", "~> 3.0"
20+
gem "timecop", ">= 0.9.6"
21+
gem "vcr", "~> 6.0"
22+
gem "webmock", "~> 3.18"
23+
gem "yard", ">= 0.9.28"
24+
gem "yard-activesupport-concern", ">= 0.0.1"
25+
gem "activesupport", "~> 8.1.0"
26+
27+
gemspec path: "../"

lib/immoscout.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
require 'zeitwerk'
44
require 'logger'
5+
require 'active_support'
56
require 'active_support/concern'
67
require 'active_support/configurable'
78
require 'active_support/core_ext/hash'

0 commit comments

Comments
 (0)