Sha256: ad436f942e673865363eca0f806e0e9b8df79fefff21aa49d106b6f52715cf95

Contents?: true

Size: 540 Bytes

Versions: 5

Compression:

Stored size: 540 Bytes

Contents

# frozen_string_literal: true

require 'simplecov'

SimpleCov.profiles.define 'gem' do
  add_filter '/spec/'
end

SimpleCov.start 'gem'

require 'jace'
require 'pry-nav'

support_files = File.expand_path('spec/support/**/*.rb')

Dir[support_files].sort.each { |file| require file }

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.filter_run_excluding :integration unless ENV['ALL']

  config.order = 'random'
end

RSpec::Matchers.define_negated_matcher :not_change, :change

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jace-0.1.1 spec/spec_helper.rb
jace-0.1.0 spec/spec_helper.rb
jace-0.0.3 spec/spec_helper.rb
jace-0.0.2 spec/spec_helper.rb
jace-0.0.1 spec/spec_helper.rb