summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2019-11-24 16:39:15 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2019-11-24 16:39:15 +0100
commita5fe57486659b79a006d97489dbe2b4637543658 (patch)
tree4be8a95b1d11e7dbaed78ca713c890313eeb3b54
parent70ea6b742137f97efd1ce02f0e16599cd1258f58 (diff)
downloadcoderay-a5fe57486659b79a006d97489dbe2b4637543658.tar.gz
also disable for Ruby 1.8.7
-rw-r--r--spec/spec_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 78a60b2..282f576 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,4 +1,4 @@
-unless RUBY_VERSION[/^2.3/]
+if RUBY_VERSION >= '1.9' && !RUBY_VERSION[/^2.3/]
require 'simplecov'
SimpleCov.start
end