Sha256: 7d263ecf2198d5ae2998f77c52b71ab973fd251dc3471d17a52ea2c72556e20d
Contents?: true
Size: 540 Bytes
Versions: 3
Compression:
Stored size: 540 Bytes
Contents
# for test coverage require 'simplecov' require 'simplecov-rcov' class SimpleCov::Formatter::MergedFormatter def format(result) SimpleCov::Formatter::HTMLFormatter.new.format(result) SimpleCov::Formatter::RcovFormatter.new.format(result) end end SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter SimpleCov.start do add_filter "/spec/" end $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'harvestdor-indexer' #RSpec.configure do |config| #end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
harvestdor-indexer-0.0.11 | spec/spec_helper.rb |
harvestdor-indexer-0.0.10 | spec/spec_helper.rb |
harvestdor-indexer-0.0.3 | spec/spec_helper.rb |