forked from rpush/rpush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appraisals
44 lines (36 loc) · 1.06 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
# 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.0" do
gem "activesupport", "~> 5.0.0"
group :development do
gem "rails", "~> 5.0.0"
# Supposedly Rails 5-stable already supports pg 1.0 but hasn't had a
# release yet.
# https://github.com/rails/rails/pull/31671#issuecomment-357605227
gem "pg", "< 1.0"
end
end
appraise "rails-5.1" do
gem "activesupport", "~> 5.1.0"
group :development do
gem "rails", "~> 5.1.0"
end
end
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