Sha256: d88c5c734e8f5d0904ff4f28a07e309d8acd5d0bb4416067fd0a07701ff58424
Contents?: true
Size: 760 Bytes
Versions: 3
Compression:
Stored size: 760 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 'pry-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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dry-logic-1.0.0 | spec/spec_helper.rb |
dry-logic-0.6.1 | spec/spec_helper.rb |
dry-logic-0.6.0 | spec/spec_helper.rb |