Sha256: 48e781bce1cd91c76321c6778400722a05c63a594cf0b1d6cd6e7d770a20ca28
Contents?: true
Size: 595 Bytes
Versions: 2
Compression:
Stored size: 595 Bytes
Contents
require 'simplecov' module SimpleCov::Configuration def clean_filters @filters = [] end end SimpleCov.configure do clean_filters end ENV['COVERAGE'] && SimpleCov.start do add_filter '/.rvm/' end $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require 'simplecov' require 'simplecov-lcov' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. # Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} RSpec.configure do |config| end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simplecov-lcov-0.1.2 | spec/spec_helper.rb |
simplecov-lcov-0.1.1 | spec/spec_helper.rb |