forked from rpush/rpush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppraisals
32 lines (26 loc) · 779 Bytes
/
Appraisals
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
# Specify here only version constraints that differ from
# `rpush.gemspec`.
#
# > The dependencies in your Appraisals file are combined with dependencies in
# > your Gemfile, so you don't need to repeat anything that's the same for each
# > appraisal. If something is specified in both the Gemfile and an appraisal,
# > the version from the appraisal takes precedence.
# > https://github.com/thoughtbot/appraisal
appraise "rails-5.2" do
gem "activesupport", "~> 5.2.0"
group :development do
gem "rails", "~> 5.2.0"
end
end
appraise "rails-6.0" do
gem 'activesupport', '~> 6.0.0'
group :development do
gem 'rails', '~> 6.0.0'
end
end
appraise "rails-6.1" do
gem 'activesupport', '~> 6.1.0'
group :development do
gem 'rails', '~> 6.1.0'
end
end