Sha256: 8aa960a2c91f102e8898d3db97cb7b22aa06c659c61b6d4aeb73f8ebabded3c0
Contents?: true
Size: 600 Bytes
Versions: 2
Compression:
Stored size: 600 Bytes
Contents
require 'simplecov' module SimpleCov::Configuration def clean_filters @filters = [] end end SimpleCov.configure do clean_filters load_adapter 'test_frameworks' 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 'gem-list' # 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 |
---|---|
gem-list-0.2.0 | spec/spec_helper.rb |
gem-list-0.1.0 | spec/spec_helper.rb |