# 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