-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (22 loc) · 745 Bytes
/
Gemfile
File metadata and controls
29 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source "https://rubygems.org"
alchemy_branch = ENV.fetch("ALCHEMY_BRANCH", "8.2-stable")
gem "alchemy_cms", github: "AlchemyCMS/alchemy_cms", branch: alchemy_branch
rails_version = ENV.fetch("RAILS_VERSION", "8.0")
gem "rails", "~> #{rails_version}.0"
gem "listen", "~> 3.8"
gem "puma", "~> 8.0"
# Specify your gem's dependencies in alchemy-solidus.gemspec
gemspec
group :test do
if ENV["DB"].nil? || ENV["DB"] == "sqlite"
gem "sqlite3", "~> 2.5"
end
gem "mysql2" if ENV["DB"] == "mysql"
gem "pg", "~> 1.0" if ENV["DB"] == "postgresql"
if ENV["GITHUB_ACTIONS"]
gem "simplecov-cobertura", "~> 3.0"
end
end
gem "github_fast_changelog", require: false
gem "standardrb", "~> 1.0", require: false
gem "propshaft", "~> 1.1"