Module: Act::UserInterface
- Defined in:
- lib/act/user_interface.rb
Overview
Manages the UI output.
Class Method Summary collapse
Class Method Details
.puts(message) ⇒ Object
5 6 7 |
# File 'lib/act/user_interface.rb', line 5 def self.puts() STDOUT.puts end |
.tty? ⇒ Boolean
13 14 15 |
# File 'lib/act/user_interface.rb', line 13 def self.tty? STDOUT.tty? end |
.warn(message) ⇒ Object
9 10 11 |
# File 'lib/act/user_interface.rb', line 9 def self.warn() STDERR.puts end |