Class: Omnizip::Progress::SilentReporter

Inherits:
ProgressReporter show all
Defined in:
lib/omnizip/progress/silent_reporter.rb

Overview

Silent progress reporter that produces no output.

This reporter is useful when you want to track progress internally but don't want any visible output.

Instance Method Summary collapse

Methods inherited from ProgressReporter

#finish, #start

Instance Method Details

#report(_progress) ⇒ Object

Report progress (does nothing)

Parameters:



17
18
19
# File 'lib/omnizip/progress/silent_reporter.rb', line 17

def report(_progress)
  # Intentionally does nothing
end