Skip to content

Commit

Permalink
Update simplecov dependency to ~> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jul 20, 2014
1 parent 376df08 commit 8baa6b3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ gemspec
gem 'rake', '~> 10.1'

group :test do
gem 'coveralls', '~> 0.7.0', :require => false
gem 'coveralls', '~> 0.7.0'
gem 'rspec', '~> 2.14'
gem 'simplecov', '~> 0.8.2', :require => false
gem 'simplecov', '~> 0.9.0'
end

platforms :ruby_18, :jruby do
Expand Down
29 changes: 13 additions & 16 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
# encoding: utf-8

require 'simplecov'
require 'coveralls'

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

SimpleCov.start do
command_name 'spec'

add_filter 'config'
add_filter 'spec'
add_filter 'vendor'

minimum_coverage 100
if RUBY_VERSION >= '1.9'
require 'simplecov'
require 'coveralls'

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

SimpleCov.start do
add_filter '/config'
add_filter '/spec'
add_filter '/vendor'
command_name 'spec'
minimum_coverage 100
end
end

require 'memoizable'
Expand Down

0 comments on commit 8baa6b3

Please sign in to comment.