summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Luong (Franco) <franco@definefunk.com>2017-08-29 15:28:33 -0400
committerGitHub <noreply@github.com>2017-08-29 15:28:33 -0400
commit7f68225cc4a72c00b310c1ecbd6900b193ac2ec6 (patch)
treeee8115fb4fa2418a68c7913ae73a532018d3c87f
parent2a10d48ca4b4e42bcbac708473ce73c6dd4e5b15 (diff)
parent279d9d4c5516f467dee5d2a0593a76389cebed97 (diff)
downloadipaddress-7f68225cc4a72c00b310c1ecbd6900b193ac2ec6.tar.gz
Merge pull request #85 from icy-arctic-fox/travis-ci-fix
Travis CI fix
-rw-r--r--.travis.yml10
-rw-r--r--Gemfile1
-rw-r--r--test/test_helper.rb4
3 files changed, 6 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index dc5bb57..bb08cdb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,7 @@
language: ruby
rvm:
-- 2.3.0
-- 2.2.4
-- 2.2.0
-- 2.1.8
-- 2.1.3
-- 2.0.0
-- 1.9.3
+- 2.3
+- 2.4
install:
- gem install bundler
- gem uninstall rake -x
@@ -15,6 +10,7 @@ install:
script:
- uname -s
- rake test
+- codeclimate-test-reporter
addons:
code_climate:
repo_token:
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'))