Skip to content
Snippets Groups Projects
Commit 7f68225c authored by Francis Luong (Franco)'s avatar Francis Luong (Franco) Committed by GitHub
Browse files

Merge pull request #85 from icy-arctic-fox/travis-ci-fix

Travis CI fix
parents 2a10d48c 279d9d4c
Branches
No related tags found
No related merge requests found
language: ruby language: ruby
rvm: rvm:
- 2.3.0 - 2.3
- 2.2.4 - 2.4
- 2.2.0
- 2.1.8
- 2.1.3
- 2.0.0
- 1.9.3
install: install:
- gem install bundler - gem install bundler
- gem uninstall rake -x - gem uninstall rake -x
...@@ -15,6 +10,7 @@ install: ...@@ -15,6 +10,7 @@ install:
script: script:
- uname -s - uname -s
- rake test - rake test
- codeclimate-test-reporter
addons: addons:
code_climate: code_climate:
repo_token: repo_token:
......
...@@ -8,4 +8,5 @@ group :development do ...@@ -8,4 +8,5 @@ group :development do
gem 'travis', '>= 1.8.2' gem 'travis', '>= 1.8.2'
gem 'jeweler', '>=2.0.1' gem 'jeweler', '>=2.0.1'
gem 'codeclimate-test-reporter' gem 'codeclimate-test-reporter'
gem 'simplecov'
end end
require 'rubygems' require 'rubygems'
require 'minitest/autorun' require 'minitest/autorun'
require "codeclimate-test-reporter" require 'simplecov'
CodeClimate::TestReporter.start SimpleCov.start
$LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment