Skip to content

Commit 5823909

Browse files
committed
Removed support for Rails < 7.1 and Ruby < 3.2
1 parent e68c0b4 commit 5823909

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
gemfile: gemfiles/rails72.gemfile
1414
- ruby: 3.2
1515
gemfile: gemfiles/rails71.gemfile
16-
- ruby: 3.1
17-
gemfile: gemfiles/rails70.gemfile
1816
env:
1917
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2018
steps:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.0 (unreleased)
2+
3+
- Removed support for Rails < 7.1 and Ruby < 3.2
4+
15
## 0.6.0 (2024-11-11)
26

37
- Improved generator for Active Record encryption and MySQL

authtrail.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Gem::Specification.new do |spec|
1313
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
1414
spec.require_path = "lib"
1515

16-
spec.required_ruby_version = ">= 3.1"
16+
spec.required_ruby_version = ">= 3.2"
1717

18-
spec.add_dependency "railties", ">= 7"
18+
spec.add_dependency "railties", ">= 7.1"
1919
spec.add_dependency "warden"
2020
end

gemfiles/rails70.gemfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

test/test_helper.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@
1414
Combustion.path = "test/internal"
1515
Combustion.initialize! :active_record, :action_controller, :active_job do
1616
config.load_defaults Rails::VERSION::STRING.to_f
17-
18-
if Rails::VERSION::STRING.to_f >= 7.1
19-
config.action_dispatch.show_exceptions = :none
20-
end
21-
17+
config.action_dispatch.show_exceptions = :none
2218
config.active_job.queue_adapter = :test
2319

2420
logger = ActiveSupport::Logger.new(ENV["VERBOSE"] ? STDOUT : nil)

0 commit comments

Comments
 (0)