Sha256: 1aea547b5d63a5461e2914f9393563eaa60a523c7976410a1d41be8f7b914485
Contents?: true
Size: 756 Bytes
Versions: 2
Compression:
Stored size: 756 Bytes
Contents
if RUBY_ENGINE == 'ruby' && ENV['COVERAGE'] == 'true' require 'yaml' rubies = YAML.load(File.read(File.join(__dir__, '..', '.travis.yml')))['rvm'] latest_mri = rubies.select { |v| v =~ /\A\d+\.\d+.\d+\z/ }.max if RUBY_VERSION == latest_mri require 'simplecov' SimpleCov.start do add_filter '/spec/' end end end begin require 'byebug' rescue LoadError; end require 'dry-logic' require 'dry/core/constants' require 'pathname' SPEC_ROOT = Pathname(__dir__) Dir[SPEC_ROOT.join('shared/**/*.rb')].each(&method(:require)) Dir[SPEC_ROOT.join('support/**/*.rb')].each(&method(:require)) include Dry::Logic include Dry::Core::Constants RSpec.configure do |config| config.disable_monkey_patching! config.warnings = true end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dry-logic-0.5.0 | spec/spec_helper.rb |
dry-logic-0.4.2 | spec/spec_helper.rb |