We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1906fd commit bab4efaCopy full SHA for bab4efa
Gemfile
@@ -8,7 +8,11 @@ gem "rake", ">= 11"
8
9
# Use local copy of simplecov in development if you want to
10
# gem "simplecov", :path => File.dirname(__FILE__) + "/../simplecov"
11
-gem "simplecov", git: "https://github.com/simplecov-ruby/simplecov"
+if RUBY_VERSION < "2.5"
12
+ gem "simplecov", "< 0.19"
13
+else
14
+ gem "simplecov", git: "https://github.com/simplecov-ruby/simplecov"
15
+end
16
17
group :test do
18
gem "minitest"
0 commit comments