Sha256: 355de2603115f7c1fc03b0f42194645f892daaab00eea9edabef997dfe9186ca

Contents?: true

Size: 608 Bytes

Versions: 30

Compression:

Stored size: 608 Bytes

Contents

# frozen_string_literal: true

require 'simplecov'

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

SimpleCov.start 'gem'

require 'sinclair'
require 'sinclair/matchers'
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'
  config.include Sinclair::Matchers
end

RSpec::Matchers.define_negated_matcher :not_change, :change

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
sinclair-2.1.1 spec/spec_helper.rb
sinclair-2.1.0 spec/spec_helper.rb
sinclair-2.0.1 spec/spec_helper.rb
sinclair-2.0.0 spec/spec_helper.rb
sinclair-1.16.3 spec/spec_helper.rb
sinclair-1.16.2 spec/spec_helper.rb
sinclair-1.16.1 spec/spec_helper.rb
sinclair-1.16.0 spec/spec_helper.rb
sinclair-1.15.0 spec/spec_helper.rb
sinclair-1.14.2 spec/spec_helper.rb
sinclair-1.14.1 spec/spec_helper.rb
sinclair-1.14.0 spec/spec_helper.rb
sinclair-1.13.0 spec/spec_helper.rb
sinclair-1.12.1 spec/spec_helper.rb
sinclair-1.12.0 spec/spec_helper.rb
sinclair-1.11.0 spec/spec_helper.rb
sinclair-1.10.0 spec/spec_helper.rb
sinclair-1.9.0 spec/spec_helper.rb
sinclair-1.8.0 spec/spec_helper.rb
sinclair-1.7.0 spec/spec_helper.rb