module SimpleCov::Configuration

def configure(&block)


options at once.
This is equivalent to SimpleCov.add_filter 'foobar' and thus makes it easier to set a buchn of configure

end
add_filter 'foobar'
SimpleCov.configure do

you're calling.
Allows you to configure simplecov in a block instead of prepending SimpleCov to all config methods
def configure(&block)
  return false unless SimpleCov.usable?
  instance_exec(&block)
end