Sha256: ddfd9dd733437e764a794ed74bdaddb18962508e5befb6c0b9513e3e9e412565
Contents?: true
Size: 539 Bytes
Versions: 4
Compression:
Stored size: 539 Bytes
Contents
require 'rubygems' require 'simplecov' SimpleCov.start ENV['RUBY_ENV'] ||= 'test' require 'bundler/setup' SimpleCov.start do add_group 'Libs', 'lib' add_filter '/vendor/bundle/' end if RUBY_PLATFORM != 'java' SimpleCov.minimum_coverage 98 SimpleCov.maximum_coverage_drop 2 end # Initialize Guard for running tests. require 'guard' Guard.setup(notify: false) require 'guard/reek' #make jruby and ruby 2.1 happy on travis UncaughtThrowError = ArgumentError unless defined?(UncaughtThrowError) RSpec.configure do |config| end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
guard-reek-1.2.0 | spec/spec_helper.rb |
guard-reek-1.1.0 | spec/spec_helper.rb |
guard-reek-1.0.2 | spec/spec_helper.rb |
guard-reek-1.0.1 | spec/spec_helper.rb |