Sha256: bb4eabdbaa2f13581c7e9e7986dc0b5045e4e7b911daa616eac851c01da06fc6
Contents?: true
Size: 605 Bytes
Versions: 2
Compression:
Stored size: 605 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 'frozen_gems' # 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 |
---|---|
frozen_gems-0.0.2 | spec/spec_helper.rb |
frozen_gems-0.0.1 | spec/spec_helper.rb |