9 lines
224 B
Ruby
9 lines
224 B
Ruby
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
|
SimpleCov::Formatter::HTMLFormatter,
|
|
SimpleCov::Formatter::MetricFu
|
|
]
|
|
SimpleCov.start do
|
|
add_filter 'spec/'
|
|
add_filter 'config/'
|
|
add_filter 'vendor/'
|
|
end
|