Sha256: 94fc3f09faab69a6a1e458e771f5fbb44d55ff999b2c1142cba19efe9d4f6f34
Contents?: true
Size: 731 Bytes
Versions: 5
Compression:
Stored size: 731 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-client require 'resync/client'
Version data entries
5 entries across 5 versions & 1 rubygems