Sha256: b0b632bb19ebb774ee00caa9235f844a88173414021fc21816991771cbd5ff6d
Contents?: true
Size: 849 Bytes
Versions: 9
Compression:
Stored size: 849 Bytes
Contents
# ------------------------------------------------------------ # SimpleCov/CodeClimate setup if ENV['COVERAGE'] if ENV['CODECLIMATE_REPO_TOKEN'] require 'codeclimate-test-reporter' CodeClimate::TestReporter.start end 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
9 entries across 9 versions & 1 rubygems