use codeclimate for code coverage
did
committed Feb 03, 2015
commit 9a28b97e84f6beab5b42df6c5b17009e009c0350
Showing 4
changed files with
11 additions
and 0 deletions
.travis.yml
+3
-0
| @@ | @@ -1,3 +1,6 @@ |
| language: ruby | |
| rvm: | |
| - 2.1.3 | |
| + | code_climate: |
| + | repo_token: |
| + | secure: BffTkuz+BgginYvK2MsIyo522eL97GXcv/bOde0Dd8rBZODFl81LV6Sc5iuQBxT8NKwUMG5a3YRULpcspScim6WVDYQw4YeqtRs+pGnXTFe40XFnkBGatWUgksNLdZhaPOJDo09e7Sh4SOSyrqkRuWcw5JZGf8o8tiqJRBAZ9cU= |
Gemfile
+2
-0
| @@ | @@ -18,6 +18,8 @@ group :test do |
| gem 'pry' | |
| gem 'coveralls', require: false | |
| + | |
| + | gem 'codeclimate-test-reporter', require: nil |
| end | |
| # platform :jruby do | |
Gemfile.lock
+3
-0
| @@ | @@ -47,6 +47,8 @@ GEM |
| addressable (2.3.6) | |
| builder (3.2.2) | |
| chunky_png (1.3.3) | |
| + | codeclimate-test-reporter (0.4.6) |
| + | simplecov (>= 0.7.1, < 1.0.0) |
| coderay (1.1.0) | |
| coffee-script (2.3.0) | |
| coffee-script-source | |
| @@ | @@ -185,6 +187,7 @@ PLATFORMS |
| DEPENDENCIES | |
| bundler (~> 1.7) | |
| + | codeclimate-test-reporter |
| coveralls | |
| i18n-spec (~> 0.6.0) | |
| json_spec (~> 1.1.4) | |
spec/spec_helper.rb
+3
-0
| @@ | @@ -1,3 +1,6 @@ |
| + | require 'codeclimate-test-reporter' |
| + | CodeClimate::TestReporter.start |
| + | |
| require 'rubygems' | |
| require 'bundler/setup' | |