Sha256: 34d8e6e130c266829566687491d4bb2c3413febf685e2faf53795f925d494861

Contents?: true

Size: 719 Bytes

Versions: 7

Compression:

Stored size: 719 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'

# ------------------------------------------------------------
# resync-client

require 'resync/client'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
resync-client-0.2.5 spec/spec_helper.rb
resync-client-0.2.4 spec/spec_helper.rb
resync-client-0.2.3 spec/spec_helper.rb
resync-client-0.2.1 spec/spec_helper.rb
resync-client-0.1.2 spec/spec_helper.rb
resync-client-0.1.1 spec/spec_helper.rb
resync-client-0.1.0 spec/spec_helper.rb