Skip to content

Commit d4f419f

Browse files
committed
Dropped support for Ruby < 3.2 and Rails < 7.1
1 parent 7edabf6 commit d4f419f

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
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
TEST_PROPHET: 1

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 3.2.2 (unreleased)
1+
## 3.3.0 (unreleased)
22

33
- Fixed error with forecasting with Rails 7.2+
4+
- Dropped support for Ruby < 3.2 and Rails < 7.1
45

56
## 3.2.1 (2025-03-21)
67

blazer.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Gem::Specification.new do |spec|
1313
spec.files = Dir["*.{md,txt}", "{app,config,lib,licenses}/**/*"]
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"
19-
spec.add_dependency "activerecord", ">= 7"
18+
spec.add_dependency "railties", ">= 7.1"
19+
spec.add_dependency "activerecord", ">= 7.1"
2020
spec.add_dependency "chartkick", ">= 5"
2121
spec.add_dependency "safely_block", ">= 0.4"
2222
spec.add_dependency "csv"

test/test_helper.rb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
require "bundler/setup"
2-
require "logger" # for Rails < 7.1
32
require "combustion"
43
Bundler.require(:default)
54
require "minitest/autorun"
@@ -17,9 +16,7 @@
1716
config.cache_store = :memory_store
1817

1918
# fixes warning with adapter tests
20-
if Rails::VERSION::STRING.to_f >= 7.1
21-
config.action_dispatch.show_exceptions = :none
22-
end
19+
config.action_dispatch.show_exceptions = :none
2320
end
2421

2522
Rails.cache.logger = logger

0 commit comments

Comments
 (0)