Sha256: 6d94e59eae41ec30ba9522f27379a489a439b423b1b968263ecc8d02100cb14a

Contents?: true

Size: 460 Bytes

Versions: 7

Compression:

Stored size: 460 Bytes

Contents

# encoding: utf-8

module Mutant
  # Abstract base class for reporters
  class Reporter
    include Adamantium::Flat, AbstractType

    # Report object
    #
    # @param [Object] object
    #
    # @return [self]
    #
    # @api private
    #
    abstract_method :report

    # Report progress on object
    #
    # @param [Object] object
    #
    # @return [self]
    #
    # @api private
    #
    abstract_method :progress

  end # Reporter
end # Mutant

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
mutant-0.5.19 lib/mutant/reporter.rb
mutant-0.5.18 lib/mutant/reporter.rb
mutant-0.5.17 lib/mutant/reporter.rb
mutant-0.5.16 lib/mutant/reporter.rb
mutant-0.5.15 lib/mutant/reporter.rb
mutant-0.5.14 lib/mutant/reporter.rb
mutant-0.5.13 lib/mutant/reporter.rb