-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.ci.gemfile
105 lines (88 loc) · 1.6 KB
/
.ci.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
source 'https://rubygems.org'
gem "minitest-global_expectations"
gem "rack_csrf"
gem "erubi", '>= 1.13'
gem "tilt"
if RUBY_VERSION < '2.3'
gem "roda", '< 3.82'
else
gem "roda"
end
if RUBY_VERSION < '2.0'
gem 'mime-types', '< 2'
gem 'concurrent-ruby', '<1.1.10'
gem 'thor', '<1'
gem 'rails-html-sanitizer', '<1.5'
end
if RUBY_VERSION < '2.3'
gem 'i18n', '< 1.5'
gem 'mini_portile2', '< 2.5'
end
if RUBY_VERSION < '2.0'
gem 'rake', '< 10'
elsif RUBY_VERSION < '2.3'
gem 'rake', '< 13'
else
gem 'rake'
end
if RUBY_VERSION < '2.0'
gem 'json', '< 2'
else
gem 'json'
end
if RUBY_VERSION < '2.4' && RUBY_ENGINE == 'jruby'
gem 'sequel', '<5.72'
else
gem 'sequel'
end
platforms :ruby do
if RUBY_VERSION < '1.9'
gem 'sqlite3', '< 1.4'
else
gem 'sqlite3'
end
if RUBY_VERSION < '2.4'
gem 'bigdecimal', '<1.3'
end
end
platforms :jruby do
gem 'jdbc-sqlite3', '<3.42'
if RUBY_VERSION < '2.5'
gem 'racc', '< 1.6'
end
if RUBY_VERSION >= '3.1'
gem 'jar-dependencies', '0.4.1'
end
end
if RUBY_VERSION < '2.2'
gem 'rack', '~> 1.5'
else
gem 'rack', '> 1.5'
end
if RUBY_VERSION < '2.5'
gem 'loofah', '< 2.20'
end
if RUBY_VERSION < '2.2'
gem 'rails', '< 5'
gem 'nokogiri', '< 1.7'
elsif RUBY_VERSION < '2.5'
gem 'nokogiri', '< 1.15'
gem 'rails', '< 6'
elsif RUBY_VERSION < '2.7'
gem 'rails', '< 7'
else
gem 'rails'
end
if RUBY_VERSION < '2.2'
gem 'sinatra', '< 2'
elsif RUBY_VERSION < '2.4'
gem 'sinatra', '< 2.2.4'
else
gem 'sinatra'
end
if RUBY_VERSION < '2.4.0'
# Until mintest 5.12.0 is fixed
gem 'minitest', '5.11.3'
else
gem 'minitest'
end