Skip to content

Commit

Permalink
Update simplecov dependency to >= 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jul 20, 2014
1 parent c12b8f0 commit deafd02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ end

group :test do
gem 'backports'
gem 'coveralls', :require => false
gem 'coveralls'
gem 'json', :platforms => [:rbx, :ruby_19, :ruby_18]
gem 'mime-types', '~> 1.25', :platforms => [:jruby, :ruby_18]
gem 'rest-client', '~> 1.6.0', :platforms => [:jruby, :ruby_18]
gem 'rspec', '>= 2.11'
gem 'rubocop', '>= 0.23', :platforms => [:ruby_19, :ruby_20, :ruby_21]
gem 'simplecov', :require => false
gem 'simplecov', '>= 0.9'
gem 'webmock'
gem 'yardstick'
end
Expand Down
5 changes: 1 addition & 4 deletions spec/helper.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
]
SimpleCov.formatters = [SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter]

SimpleCov.start do
add_filter '/spec/'
Expand Down

0 comments on commit deafd02

Please sign in to comment.