Sha256: 5ef98cd56fbaa97693d5a7c49408b3bad160b44fb53e56b416939e47fba1920a

Contents?: true

Size: 565 Bytes

Versions: 1

Compression:

Stored size: 565 Bytes

Contents

require 'bundler/setup'
require 'simplecov'
SimpleCov.start do
  add_filter '/spec/'
  add_filter '.bundle'
end

require 'guard/strainer'
Guard::UI.options = { :level => :warn }

RSpec.configure do |config|
  config.color = true
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.before(:each) do
    @fixture_path = Pathname.new(File.expand_path('../fixtures/', __FILE__))
  end
end

# Load custom matchers
Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
guard-strainer-1.0.0 spec/spec_helper.rb