Sha256: 841424e8685cce0a86deb406da1b90c51e7dbf519439fdb91331cc8365f503f7

Contents?: true

Size: 430 Bytes

Versions: 5

Compression:

Stored size: 430 Bytes

Contents

# frozen_string_literal: true

require "rspec/collection_matchers"
require "webmock/rspec"

if ENV["CI"]
  require "simplecov"
  SimpleCov.start

  require "codecov"
  SimpleCov.formatter = SimpleCov::Formatter::Codecov
end

$: << File.dirname(__FILE__) + "/../lib"
require "roadie"

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
end

Dir["./spec/support/**/*.rb"].sort.each { |file| require file }

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
roadie-5.2.1 spec/spec_helper.rb
roadie-5.2.0 spec/spec_helper.rb
roadie-5.1.0 spec/spec_helper.rb
roadie-5.0.1 spec/spec_helper.rb
roadie-5.0.0 spec/spec_helper.rb