Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Commit

Permalink
Pin SimpleCov to version 0.7.1
Browse files Browse the repository at this point in the history
Pin SimpleCov to version 0.7.1 to avoid the bug in SimpleCov 0.8.x
affecting exit codes:

simplecov-ruby/simplecov#281

Note that I had to change `profiles` to `adapters`, as the naming
changed in version 0.8.0[1].

[1]:
simplecov-ruby/simplecov@60f4717#diff-4ac32a78649ca5bdd8e0ba38b7006a1eR16
  • Loading branch information
mattbostock committed Jun 13, 2014
1 parent 5f36a97 commit 387171f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Expand Up @@ -9,7 +9,7 @@ def output_message(_message)
end
end

SimpleCov.profiles.define 'gem' do
SimpleCov.adapters.define 'gem' do
add_filter '/spec/'
add_filter '/vendor/'

Expand Down
2 changes: 1 addition & 1 deletion vcloud-core.gemspec
Expand Up @@ -29,6 +29,6 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.14.1'
s.add_development_dependency 'rubocop', '~> 0.23.0'
s.add_development_dependency 'simplecov', '~> 0.8.2'
s.add_development_dependency 'simplecov', '~> 0.7.1'
s.add_development_dependency 'vcloud-tools-tester', '0.0.6'
end

0 comments on commit 387171f

Please sign in to comment.