Sha256: 3841983d1845cdd032a208b61ffecbaf7358742fbe2331cbef8262f896a13562
Contents?: true
Size: 381 Bytes
Versions: 4
Compression:
Stored size: 381 Bytes
Contents
# frozen_string_literal: true module MasterDataTool module Report module Printer attr_reader :spec_config attr_accessor :silent def initialize(spec_config, silent: false) @spec_config = spec_config @silent = silent end def print(message) return if silent raise NotImplementedError end end end end
Version data entries
4 entries across 4 versions & 1 rubygems