Skip to content

Commit

Permalink
Merge pull request #173 from tvdeyen/alchemy-7-fixes
Browse files Browse the repository at this point in the history
Update to Alchemy 7.0
  • Loading branch information
tvdeyen authored Jul 5, 2023
2 parents 8c53ad4 + 6799a68 commit bb2e7ec
Show file tree
Hide file tree
Showing 22 changed files with 133 additions and 2,620 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
alchemy_branch:
- 6.1-stable
- main
ruby:
- "3.0"
- "3.1"
Expand Down
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
source "https://rubygems.org"

alchemy_branch = ENV.fetch("ALCHEMY_BRANCH", "6.1-stable")
alchemy_branch = ENV.fetch("ALCHEMY_BRANCH", "main")
gem "alchemy_cms", github: "AlchemyCMS/alchemy_cms", branch: alchemy_branch

gem "rails", "~> 6.1.7"
gem "rails", "~> 7.0.0"
gem "listen", "~> 3.8"
gem "puma", "~> 6.0"

# Specify your gem's dependencies in alchemy-solidus.gemspec
gemspec
Expand Down
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ namespace :alchemy do
SETUP
)
exit($?.exitstatus) unless $?.success?
system("bin/rails webpacker:compile") || exit($?.exitstatus)
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion alchemy-devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|

s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "CHANGELOG.md", "README.md"]

s.add_dependency "alchemy_cms", [">= 6.1.0", "< 7"]
s.add_dependency "alchemy_cms", [">= 7.0.0-rc1", "< 8"]
s.add_dependency "devise", [">= 4.7.1", "< 5"]

s.add_development_dependency "capybara"
Expand Down
Loading

0 comments on commit bb2e7ec

Please sign in to comment.