Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More improvements #8

Merged
merged 23 commits into from
Dec 2, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix SimpleCov deprecation notice
  • Loading branch information
vladgh committed Dec 2, 2015
commit 0dac4b056e3d5749a5117086df5c4a17d1cb076a
9 changes: 5 additions & 4 deletions dist/profile/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@

require 'simplecov'
require 'simplecov-console'

SimpleCov.formatters = [
SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::Console
]
SimpleCov.start do
add_filter '/spec'
add_filter '/vendor'
formatter SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::Console
]
end