forked from avo-hq/avo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppraisals
More file actions
20 lines (18 loc) · 686 Bytes
/
Copy pathAppraisals
File metadata and controls
20 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
["3.1.4", "3.3.0"].each do |ruby_version|
["6.1", "7.1", "7.2.0.beta2"].each do |rails_version|
appraise "rails-#{rails_version}-ruby-#{ruby_version}" do
gem "psych", "< 4"
gem "rails", "~> #{rails_version}"
gem "activestorage", "~> #{rails_version}"
gem "activestorage"
end
end
# TODO: we'll probably have to remove these when Rails 8 is released
appraise "rails-8.0-ruby-#{ruby_version}" do
gem "psych", "< 4"
gem "rails", github: "rails/rails", branch: "main"
gem "activestorage", github: "rails/rails", branch: "main"
# Temporary Rails 8 support
gem "acts-as-taggable-on", github: "avo-hq/acts-as-taggable-on"
end
end