Sha256: 32b8746de792b16888f0fc669db5d05b566b056677498fe84f70451ddf5ec1ee

Contents?: true

Size: 715 Bytes

Versions: 7

Compression:

Stored size: 715 Bytes

Contents

# ------------------------------------------------------------
# SimpleCov setup

if ENV['COVERAGE']
  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'

# ------------------------------------------------------------
# Stash::Harvester

require 'resync'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
resync-0.2.2 spec/spec_helper.rb
resync-0.2.1 spec/spec_helper.rb
resync-0.2.0 spec/spec_helper.rb
resync-0.1.3 spec/spec_helper.rb
resync-0.1.2 spec/spec_helper.rb
resync-0.1.1 spec/spec_helper.rb
resync-0.1.0 spec/spec_helper.rb