Sha256: a08b62c303b6a05f96c86dad2cd6cae57fb7e08c1999b61bd6792cfb338e0b41

Contents?: true

Size: 525 Bytes

Versions: 2

Compression:

Stored size: 525 Bytes

Contents

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'pathname'
require 'faker'

EXAMPLE_DATA = Pathname.new(__FILE__).dirname + 'data'

if ENV['TRAVIS'] == 'true'
  require 'coveralls'
  Coveralls.wear!
else
  begin
    require 'simplecov'
    SimpleCov.start
  rescue LoadError
    warn 'Unable to load simplecov; skipping coverage report'
  end
end

RSpec.configure do |c|
  c.run_all_when_everything_filtered = true
  c.treat_symbols_as_metadata_keys_with_true_values = true

  c.filter_run focus: true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
magic_reveal-2.6.1.2 spec/spec_helper.rb
magic_reveal-2.6.1.1 spec/spec_helper.rb