Skip to content

Commit

Permalink
add code climate test coverage
Browse files Browse the repository at this point in the history
ddollar committed Jun 2, 2014
1 parent 5599124 commit d5011a3
Showing 3 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
script: bundle exec rake spec

language: ruby
cache: bundler
bundler_args: --without development

rvm:
- 1.9.3
- 2.0.0
- 1.9.3
- 2.0.0
env:
global:
secure: IKoaAfTsrU1scmRO7LNJ+hVGzVeYrCB8qwr1KK/WiCm6JirAhiwvpf7osaMT6h+QRELSiAay2wPn89FqpZ9wzpL/zh5kpgfI04gnKrD7ZlPiKDPYddt6R4+Z4+LUZ0dkoM//MjRiIKz0wdvgbzn/E8FSpuhh3FeVYzYVTmAfgME=
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ group :test do
gem 'rspec', '~> 2.14.0'
gem "simplecov", :require => false
gem 'timecop'
gem "codeclimate-test-reporter", :require => false
end

group :development do
4 changes: 3 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require "simplecov"
require "codeclimate-test-reporter"
CodeClimate::TestReporter.startrequire "simplecov"

SimpleCov.start do
add_filter "/spec/"
end

0 comments on commit d5011a3

Please sign in to comment.