Class: Gem::ConsoleUI

Inherits:
StreamUI show all
Defined in:
lib/build-tool/GUI.rb

Overview

Subclass of StreamUI that instantiates the user interaction using STDIN, STDOUT, and STDERR.

Instance Attribute Summary

Attributes inherited from StreamUI

#errs, #ins, #outs

Instance Method Summary collapse

Methods inherited from StreamUI

#alert, #alert_error, #alert_warning, #ask, #ask_yes_no, #choose_from_list, #progress_reporter, #say, #terminate_interaction

Constructor Details

#initializeConsoleUI

Returns a new instance of ConsoleUI.



345
346
347
# File 'lib/build-tool/GUI.rb', line 345

def initialize
  super(STDIN, STDOUT, STDERR)
end