Sha256: d2592fafbf2d0b8694b47a0c5e89119463d6177eac46da6d2305d0ef3320f7b1
Contents?: true
Size: 504 Bytes
Versions: 10
Compression:
Stored size: 504 Bytes
Contents
# encoding: utf-8 if ENV['COVERAGE'] == 'true' require 'simplecov' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, ] SimpleCov.start do command_name 'spec:unit' add_filter 'config' add_filter 'spec' add_filter 'vendor' minimum_coverage 100 end end require 'ice_nine' require 'devtools/spec_helper' RSpec.configure do |config| config.expect_with :rspec do |expect_with| expect_with.syntax = :expect end end
Version data entries
10 entries across 8 versions & 4 rubygems