Sha256: 429a4462eb1ce61bf1707d9b4415e56d48a35a9350ecbcd8ca3a54688b585ab1

Contents?: true

Size: 716 Bytes

Versions: 13

Compression:

Stored size: 716 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::Wrapper

require 'stash/wrapper'

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
stash-wrapper-0.1.12 spec/spec_helper.rb
stash-wrapper-0.1.11.1 spec/spec_helper.rb
stash-wrapper-0.1.11 spec/spec_helper.rb
stash-wrapper-0.1.10 spec/spec_helper.rb
stash-wrapper-0.1.9 spec/spec_helper.rb
stash-wrapper-0.1.8 spec/spec_helper.rb
stash-wrapper-0.1.7 spec/spec_helper.rb
stash-wrapper-0.1.6 spec/spec_helper.rb
stash-wrapper-0.1.5 spec/spec_helper.rb
stash-wrapper-0.1.4 spec/spec_helper.rb
stash-wrapper-0.1.3 spec/spec_helper.rb
stash-wrapper-0.1.2 spec/spec_helper.rb
stash-wrapper-0.1.1 spec/spec_helper.rb