Class: Rexer::Commands::ProgressNotifier
- Inherits:
-
Object
- Object
- Rexer::Commands::ProgressNotifier
- Defined in:
- lib/rexer/commands.rb
Instance Method Summary collapse
- #completed ⇒ Object
- #processing(process_title) ⇒ Object
- #skipped(reason) ⇒ Object
- #started(process_title) ⇒ Object
Instance Method Details
#completed ⇒ Object
35 36 37 |
# File 'lib/rexer/commands.rb', line 35 def completed Rexer.verbosity.on(:info) { puts Paint["done", :green] } end |
#processing(process_title) ⇒ Object
43 44 45 |
# File 'lib/rexer/commands.rb', line 43 def processing(process_title) Rexer.verbosity.on(:debug) { puts Paint[process_title, :gray] } end |