Sha256: 78d30d2f99e162eb15ef6500988b7f11babda146f31200c0d8104efc96b3a526
Contents?: true
Size: 761 Bytes
Versions: 3
Compression:
Stored size: 761 Bytes
Contents
require 'rubygems' require 'spork' Spork.prefork do unless ENV['DRB'] require 'simplecov' SimpleCov.start end $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' # 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| #config.filter_run :focus => true config.fail_fast = false end end Spork.each_run do if ENV['DRB'] require 'simplecov' SimpleCov.start end load File.dirname(__FILE__) + "/../lib/overapp.rb" #Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| load f} end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
overapp-0.3.1 | spec/spec_helper.rb |
overapp-0.3.0 | spec/spec_helper.rb |
overapp-0.2.0 | spec/spec_helper.rb |