Sha256: b24c1b5410f3cfb244798c2cd03725b1c84fc3d877ff7587df0e0c1942bc6dbc

Contents?: true

Size: 522 Bytes

Versions: 4

Compression:

Stored size: 522 Bytes

Contents

module Mutant
  class Reporter

    # Null reporter
    class Null < self
      include Equalizer.new

      # Report object
      #
      # @param [Object] _object
      #
      # @return [self]
      #
      # @api private
      #
      def report(_object)
        self
      end

      # Report progress on object
      #
      # @param [Object] _object
      #
      # @return [self]
      #
      # @api private
      #
      def progress(_object)
        self
      end

    end # Null
  end # Reporter
end # Mutant

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mutant-0.5.23 lib/mutant/reporter/null.rb
mutant-0.5.22 lib/mutant/reporter/null.rb
mutant-0.5.21 lib/mutant/reporter/null.rb
mutant-0.5.20 lib/mutant/reporter/null.rb