Sha256: 4aa4599f3d08a2907a4e4fce0c5d12a242f3c3726514681c328b637b2e6e40b3

Contents?: true

Size: 390 Bytes

Versions: 1

Compression:

Stored size: 390 Bytes

Contents

# encoding: utf-8

if ENV['COVERAGE'] == 'true'
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]

  SimpleCov.start do
    command_name 'spec:unit'

    add_filter 'config'
    add_filter 'spec'
  end
end

require 'reference'

require 'awesome_print'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reference.rb-0.1.0 spec/spec_helper.rb