Skip to content

Commit 9a32738

Browse files
committed
Allow Rails 8.1
1 parent 7a666ea commit 9a32738

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/build_test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@ jobs:
106106
database: postgresql
107107
storage: active_storage
108108
experimental: true
109+
- rails: "8.1"
110+
ruby: "3.4"
111+
database: postgresql
112+
storage: active_storage
113+
- rails: "8.1"
114+
ruby: "3.4"
115+
database: mariadb
116+
storage: dragonfly
117+
- rails: "8.1"
118+
ruby: "3.4"
119+
database: sqlite
120+
storage: active_storage
109121
continue-on-error: ${{ matrix.experimental == true }}
110122

111123
env:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gemspec
66

7-
rails_version = ENV.fetch("RAILS_VERSION", "8.0")
7+
rails_version = ENV.fetch("RAILS_VERSION", "8.1")
88
gem "rails", "~> #{rails_version}.0"
99

1010
if ENV["DB"].nil? || ENV["DB"] == "sqlite"

alchemy_cms.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ Gem::Specification.new do |gem|
3434
activesupport
3535
railties
3636
].each do |rails_gem|
37-
gem.add_runtime_dependency rails_gem, [">= 7.1", "< 8.1"]
37+
gem.add_runtime_dependency rails_gem, [">= 7.1", "< 8.2"]
3838
end
3939

4040
gem.add_runtime_dependency "active_model_serializers", ["~> 0.10.14"]
4141
gem.add_runtime_dependency "acts_as_list", [">= 0.3", "< 2"]
42-
gem.add_runtime_dependency "awesome_nested_set", ["~> 3.1", ">= 3.7.0"]
42+
gem.add_runtime_dependency "awesome_nested_set", [">= 3.9.0", "< 4.0"]
4343
gem.add_runtime_dependency "cancancan", [">= 2.1", "< 4.0"]
4444
gem.add_runtime_dependency "csv", ["~> 3.3"]
4545
gem.add_runtime_dependency "dragonfly", ["~> 1.4"]

0 commit comments

Comments
 (0)