From 954339eb2fa37c89677a6e5255e63fecd23bcf8d Mon Sep 17 00:00:00 2001 From: Phil Cohen Date: Sun, 30 Dec 2012 21:31:09 -0800 Subject: [PATCH] check VERSION before ENGINE for Travis --- test/minitest_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/minitest_helper.rb b/test/minitest_helper.rb index 74bd3be..778f7c0 100644 --- a/test/minitest_helper.rb +++ b/test/minitest_helper.rb @@ -1,4 +1,4 @@ -if RUBY_ENGINE == "ruby" && RUBY_VERSION > "1.9" +if RUBY_VERSION > "1.9" && RUBY_ENGINE == "ruby" require "simplecov" require "coveralls"