-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
44 lines (37 loc) · 1.49 KB
/
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
source "https://rubygems.org"
gemspec
group :development do
gem 'rake', ['>= 12.3.3', '< 14']
gem 'git', '~> 1.2', require: false
end
group :test do
gem 'minitest', '~> 5.8'
# coveralls is no longer maintained, but supports Ruby < 2.3.
# coveralls_reborn is maintained, but requires Ruby >= 2.3.
gem 'coveralls', git: 'https://github.com/philr/coveralls-ruby.git', require: false if RUBY_VERSION < '2.3'
gem 'coveralls_reborn', '~> 0.13', require: false if RUBY_VERSION >= '2.3'
# term-ansicolor is a dependency of coveralls. All versions are falsely
# declared as compatible with any Ruby version.
#
# Limit to an earlier compatible version.
if RUBY_VERSION < '2.5'
gem 'term-ansicolor', '< 1.9'
end
# tins is a dependency of coveralls. From 1.33.0 it depends on bigdecimal,
# which can't be installed on old JRuby versions.
#
# Limit to an earlier compatible version.
if RUBY_ENGINE == 'jruby'
gem 'tins', '< 1.33'
end
# The source version of ffi 1.15.5 is declared as compatible with Ruby >= 2.3.
# The binary version of 1.15.5 is declared as compatible with Ruby >= 2.4, so
# doesn't get used. The using the source version results in a segmentation
# fault during libffi initialization.
#
# Binaries of 15.5.0 to 15.5.4 are declared as compatible with Ruby >= 2.3,
# but don't get used with Bundler 2.3.23 and Ruby 2.3 on Windows.
#
# Limit to earlier compatible versions.
gem 'ffi', '< 1.15.0' if RUBY_VERSION < '2.4' && RUBY_PLATFORM =~ /mingw/
end