-
Notifications
You must be signed in to change notification settings - Fork 21
/
Appraisals
67 lines (51 loc) · 1.01 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
### i18n
appraise 'i18n-0.7' do
gem 'i18n', '0.7.0'
end
appraise 'i18n-0.9' do
gem 'i18n', '0.9.5'
end
appraise 'i18n-1.0' do
gem 'i18n', '1.0.0'
end
appraise 'i18n-1.8' do
gem 'i18n', '1.8.9'
end
### thor
appraise 'thor-0.15' do
gem 'thor', '0.15.0'
end
appraise 'thor-0.16' do
gem 'thor', '0.15.0'
end
appraise 'thor-0.17' do
gem 'thor', '0.17.0'
end
appraise 'thor-0.18' do
gem 'thor', '0.18.1'
end
appraise 'thor-0.19' do
gem 'thor', '0.19.4'
end
appraise 'thor-0.20' do
gem 'thor', '0.20.3'
end
# thor >= 1.0 isn't compatible with our version of aruba; CLI specs are broken,
# but the CLI itself works well, as can be tested by
# `bundle exec appraisal thor-1.1 ruby -Ilib bin/calendariumrom ...`
# ruby >= 2.4 required
appraise 'thor-1.0' do
gem 'thor', '1.0.1'
group :test do
gem 'aruba', '1.0.0'
gem 'cucumber', '3.0.0'
end
end
# ruby >= 2.4 required
appraise 'thor-1.1' do
gem 'thor', '1.1.0'
group :test do
gem 'aruba', '1.0.0'
gem 'cucumber', '3.0.0'
end
end