Sha256: ff661cdcc529e5a340c9d13a62fa5004cd45d031a01fe06f7942d92f61b3ea0d

Contents?: true

Size: 569 Bytes

Versions: 3

Compression:

Stored size: 569 Bytes

Contents

# frozen_string_literal: true

require 'rspec/its'
require 'rspec/collection_matchers'
require 'simplecov'
require 'bundler/setup'

require 'rake/funnel'

# Try to load registry so we can check in specs whether it's defined.
begin
  require 'win32/registry'
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

# When invoked via the rspec rake task, output needs to by synced.
Rake::Funnel::Integration::SyncOutput.new

RSpec.configure do |config|
  config.filter_run_when_matching(:focus)

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rake-funnel-0.24.0 spec/spec_helper.rb
rake-funnel-0.23.0 spec/spec_helper.rb
rake-funnel-0.22.3 spec/spec_helper.rb