Sha256: 0608cc88092071a06d23425f690d52c61cd4f8df7dfe101004f847776276bc33
Contents?: true
Size: 835 Bytes
Versions: 7
Compression:
Stored size: 835 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 require 'resync'
Version data entries
7 entries across 7 versions & 1 rubygems