Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- alchemy_cms: "8.1"
rails: "8.1"
ruby: "3.4"
- alchemy_cms: "8.2"
rails: "8.1"
ruby: "3.4"
env:
RAILS_VERSION: ${{ matrix.rails }}
ALCHEMY_CMS_VERSION: ${{ matrix.alchemy_cms }}
Expand Down
10 changes: 3 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ if alchemy_cms_version.start_with?("8.")
gem "propshaft"
end

if alchemy_cms_version == "8.1"
gem "alchemy_cms", github: "AlchemyCMS/alchemy_cms", branch: "8.1-stable"
gem "alchemy-devise", github: "AlchemyCMS/alchemy-devise", branch: "main"
else
gem "alchemy_cms", "~> #{alchemy_cms_version}"
gem "alchemy-devise", "~> #{alchemy_cms_version}"
end
gem "alchemy_cms", "~> #{alchemy_cms_version}"
devise_version = (Gem::Version.new(alchemy_cms_version) >= Gem::Version.new("8.0")) ? "8.0" : alchemy_cms_version
gem "alchemy-devise", "~> #{devise_version}"

# Specify your gem's dependencies in alchemy-solid_errors.gemspec.
gemspec
Expand Down
2 changes: 1 addition & 1 deletion alchemy-solid_errors.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
end

spec.add_dependency "rails", ">= 7.2.0", "< 9.0"
spec.add_dependency "alchemy_cms", ">= 7.4.0", "< 8.2"
spec.add_dependency "alchemy_cms", ">= 7.4.0", "< 9.0"
spec.add_dependency "solid_errors", ">= 0.7", "< 1.0"

spec.add_development_dependency "capybara", ["~> 3.0"]
Expand Down
Loading