forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (52 loc) · 1.75 KB
/
Gemfile
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
rails_version = ENV.fetch("RAILS_VERSION", 7.0).to_f
gem "rails", "~> #{rails_version}.0"
if ENV["DB"].nil? || ENV["DB"] == "sqlite"
gem "sqlite3", "~> 1.6.0"
end
if ENV["DB"] == "mysql" || ENV["DB"] == "mariadb"
gem "mysql2", "~> 0.5.1"
end
gem "pg", "~> 1.0" if ENV["DB"] == "postgresql"
group :development, :test do
# execjs 2.8 removes deprecation warnings but also breaks a number of dependent projects.
# in our case the culprit is `handlebars-assets`. The changes between 2.7.0 and 2.8.0 are
# minimal, but breaking.
gem "execjs", "= 2.8.1"
gem "jsbundling-rails", "~> 1.1"
gem "rubocop", require: false
gem "standard", "~> 1.25", require: false
if ENV["GITHUB_ACTIONS"]
# Necessary because GH Actions gem cache does not have this "Bundled with Ruby" gem installed
gem "rexml", "~> 3.2.4"
gem "sassc", "~> 2.4.0" # https://github.com/sass/sassc-ruby/issues/146
else
gem "launchy"
gem "annotate"
gem "bumpy"
gem "yard"
gem "redcarpet"
gem "pry-byebug"
gem "listen"
gem "localeapp", "~> 3.0", require: false
gem "dotenv", "~> 2.2"
gem "github_fast_changelog", require: false
gem "active_record_query_trace", require: false
gem "rack-mini-profiler", require: false
gem "rufo", require: false
gem "brakeman", require: false
end
end
# Ruby 3.1 split out the net-smtp gem
# Necessary until https://github.com/mikel/mail/pull/1439
# got merged and released.
if Gem.ruby_version >= Gem::Version.new("3.1.0")
if rails_version.to_s.match?(/6.1/)
# Rails 6.1 needs this as well
gem "net-pop", "~> 0.1.0", require: false
gem "net-imap", "~> 0.3.1", require: false
end
gem "net-smtp", "~> 0.3.0", require: false
end