Sha256: 22309636eee0465fbc114d0560079790f69faa7e59f86d4c6f768ac94524c0f2
Contents?: true
Size: 717 Bytes
Versions: 4
Compression:
Stored size: 717 Bytes
Contents
# ------------------------------------------------------------ # SimpleCov/CodeClimate setup if ENV['COVERAGE'] require 'simplecov' require 'simplecov-console' SimpleCov.minimum_coverage 100 SimpleCov.start do add_filter '/spec/' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::Console, ] end end # ------------------------------------------------------------ # Rspec configuration RSpec.configure do |config| config.raise_errors_for_deprecations! config.mock_with :rspec end require 'rspec_custom_matchers' # ------------------------------------------------------------ # Resync require 'resync'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
resync-0.4.6 | spec/spec_helper.rb |
resync-0.4.5 | spec/spec_helper.rb |
resync-0.4.4 | spec/spec_helper.rb |
resync-0.4.3 | spec/spec_helper.rb |