Sha256: c08d283ecf02783e28269bc902f87b39526fe74a3e817cca5f9f66f756528b01
Contents?: true
Size: 451 Bytes
Versions: 18
Compression:
Stored size: 451 Bytes
Contents
# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Utils # Silence sometimes is a bliss. module SilenceMaker def self.hush &block old_verbose, $VERBOSE = $VERBOSE, nil # rubocop:disable Style/ParallelAssignment yield(block) ensure $VERBOSE = old_verbose end end end end
Version data entries
18 entries across 18 versions & 1 rubygems