Sha256: 48a3f1efff1776f58bbd6b2d45e01c6b7942ab58d8769b351f4b007a9dfad11a

Contents?: true

Size: 628 Bytes

Versions: 3

Compression:

Stored size: 628 Bytes

Contents

# encoding: utf-8

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')

require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start

require 'simplecov'
SimpleCov.start

require 'rspec'
require 'rspec/given'
require 'rspec/autorun'

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

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir[ "#{File.dirname(__FILE__)}/support/**/*.rb"].each do | each |
  require File.expand_path(each)
end

if ENV['TRAVIS']
  require 'coveralls'
  Coveralls.wear!
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
message_filter-0.0.2 spec/spec_helper.rb
pio-0.8.0 spec/spec_helper.rb
pio-0.7.0 spec/spec_helper.rb