Skip to content

Commit bab4efa

Browse files
committed
bundle old version of simplecov on old version of Ruby
1 parent d1906fd commit bab4efa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ gem "rake", ">= 11"
88

99
# Use local copy of simplecov in development if you want to
1010
# gem "simplecov", :path => File.dirname(__FILE__) + "/../simplecov"
11-
gem "simplecov", git: "https://github.com/simplecov-ruby/simplecov"
11+
if RUBY_VERSION < "2.5"
12+
gem "simplecov", "< 0.19"
13+
else
14+
gem "simplecov", git: "https://github.com/simplecov-ruby/simplecov"
15+
end
1216

1317
group :test do
1418
gem "minitest"

0 commit comments

Comments
 (0)