summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Miller <icy.arctic.fox@gmail.com>2016-11-16 17:47:31 -0700
committerMichael Miller <icy.arctic.fox@gmail.com>2016-11-16 17:47:31 -0700
commit77f54c6bd558b3a93082fc97bf463fdfeae93bd5 (patch)
treea4efbcac62612bc3d09ecb38234ad58e747aad22
parent2a10d48ca4b4e42bcbac708473ce73c6dd4e5b15 (diff)
downloadipaddress-77f54c6bd558b3a93082fc97bf463fdfeae93bd5.tar.gz
Switch to newer Code Climiate reporting
See https://github.com/codeclimate/ruby-test-reporter/blob/master/README.md#upgrading-from-pre-10-versions for details.
-rw-r--r--Gemfile1
-rw-r--r--test/test_helper.rb4
2 files changed, 3 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 5993158..e479aab 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,4 +8,5 @@ group :development do
gem 'travis', '>= 1.8.2'
gem 'jeweler', '>=2.0.1'
gem 'codeclimate-test-reporter'
+ gem 'simplecov'
end
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 5200cf8..4a80d3e 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,7 +1,7 @@
require 'rubygems'
require 'minitest/autorun'
-require "codeclimate-test-reporter"
-CodeClimate::TestReporter.start
+require 'simplecov'
+SimpleCov.start
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))