Sha256: 0608cc88092071a06d23425f690d52c61cd4f8df7dfe101004f847776276bc33

Contents?: true

Size: 835 Bytes

Versions: 7

Compression:

Stored size: 835 Bytes

Contents

# ------------------------------------------------------------
# SimpleCov/CodeClimate setup

if ENV['COVERAGE']
  if ENV['CODECLIMATE_REPO_TOKEN']
    require 'codeclimate-test-reporter'
    CodeClimate::TestReporter.start
  end

  require 'simplecov'
  require 'simplecov-console'

  SimpleCov.minimum_coverage 100
  SimpleCov.start do
    add_filter '/spec/'
    SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
        SimpleCov::Formatter::HTMLFormatter,
        SimpleCov::Formatter::Console,
    ]
  end
end

# ------------------------------------------------------------
# Rspec configuration

RSpec.configure do |config|
  config.raise_errors_for_deprecations!
  config.mock_with :rspec
end

require 'rspec_custom_matchers'

# ------------------------------------------------------------
# Resync

require 'resync'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
resync-0.4.2 spec/spec_helper.rb
resync-0.4.1 spec/spec_helper.rb
resync-0.4.0 spec/spec_helper.rb
resync-0.3.4 spec/spec_helper.rb
resync-0.3.3 spec/spec_helper.rb
resync-0.3.2 spec/spec_helper.rb
resync-0.3.1 spec/spec_helper.rb