Sha256: 3f247d3d946fb185188522ccb3ae2f880bd465c2db283bf75b8dbde931022360
Contents?: true
Size: 380 Bytes
Versions: 8
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true require 'securerandom' if ENV['CI'] random = SecureRandom.uuid SimpleCov.command_name(random) SimpleCov.coverage_dir("coverage_#{random}") end SimpleCov.start do enable_coverage(:branch) SimpleCov.root(File.join(File.dirname(__FILE__), '/lib')) track_files("**/*.rb") formatter(SimpleCov::Formatter::SimpleFormatter) if ENV['CI'] end
Version data entries
8 entries across 8 versions & 1 rubygems