class Athena::Console::Style::Athena
- Athena::Console::Style::Athena
- Athena::Console::Style::Output
- Reference
- Object
Overview
Default implementation of ACON::Style::Interface that provides a slew of helpful methods for formatting output.
Uses ACON::Helper::AthenaQuestion to improve the appearance of questions.
protected def execute(input : ACON::Input::Interface, output : ACON::Output::Interface) : ACON::Command::Status
style = ACON::Style::Athena.new input, output
style.title "Some Fancy Title"
# ...
ACON::Command::Status::SUCCESS
end
Defined in:
style/athena.crConstructors
Instance Method Summary
-
#ask(question : String, default : _)
Helper method for asking
ACON::Questionquestions. -
#ask(question : ACON::Question::Base)
:inherit:
-
#ask_hidden(question : String)
Helper method for asking hidden
ACON::Questionquestions. - #block(messages : String | Enumerable(String), type : String | Nil = nil, style : String | Nil = nil, prefix : String = " ", padding : Bool = false, escape : Bool = true) : Nil
-
#caution(messages : String | Enumerable(String)) : Nil
:inherit:
-
#choice(question : String, choices : Indexable | Hash, default = nil)
Helper method for asking
ACON::Question::Choicequestions. -
#comment(messages : String | Enumerable(String)) : Nil
:inherit:
-
#confirm(question : String, default : Bool = true) : Bool
Helper method for asking
ACON::Question::Confirmationquestions. -
#error(messages : String | Enumerable(String)) : Nil
:inherit:
-
#error_style : self
Returns a new instance of
selfthat outputs to the error output. -
#info(messages : String | Enumerable(String)) : Nil
:inherit:
-
#listing(elements : Enumerable) : Nil
Formats and prints a bulleted list containing the provided elements.
-
#listing(*elements : String) : Nil
:inherit:
-
#new_line(count : Int32 = 1) : Nil
:inherit:
-
#note(messages : String | Enumerable(String)) : Nil
:inherit:
-
#print(messages : String | Enumerable(String), verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
:inherit:
-
#puts(messages : String | Enumerable(String), verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
:inherit:
-
#section(message : String) : Nil
Creates a section header with the provided message.
-
#success(messages : String | Enumerable(String)) : Nil
:inherit:
-
#text(messages : String | Enumerable(String)) : Nil
:inherit:
-
#title(message : String) : Nil
Formats and prints message as a title.
-
#warning(messages : String | Enumerable(String)) : Nil
:inherit:
Instance methods inherited from class Athena::Console::Style::Output
decorated=(decorated : Bool) : Nil
decorated=,
decorated? : Bool
decorated?,
formatter : ACON::Formatter::Interface
formatter,
formatter=(formatter : ACON::Formatter::Interface) : Nil
formatter=,
new_line(count : Int32 = 1) : Nil
new_line,
print(message, verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
print,
puts(message, verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
puts,
verbosity : ACON::Output::Verbosity
verbosity,
verbosity=(verbosity : ACON::Output::Verbosity) : Nil
verbosity=
Constructor methods inherited from class Athena::Console::Style::Output
new(output : ACON::Output::Interface)
new
Instance methods inherited from module Athena::Console::Output::Interface
decorated=(decorated : Bool) : Nil
decorated=,
decorated? : Bool
decorated?,
formatter : ACON::Formatter::Interface
formatter,
formatter=(formatter : ACON::Formatter::Interface) : Nil
formatter=,
print(message : String | Enumerable(String), verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
print,
puts(message : String | Enumerable(String), verbosity : ACON::Output::Verbosity = :normal, output_type : ACON::Output::Type = :normal) : Nil
puts,
verbosity : ACON::Output::Verbosity
verbosity,
verbosity=(verbosity : ACON::Output::Verbosity) : Nil
verbosity=
Instance methods inherited from module Athena::Console::Style::Interface
ask(question : String, default : _)
ask,
ask_hidden(question : String)
ask_hidden,
caution(messages : String | Enumerable(String)) : Nil
caution,
choice(question : String, choices : Indexable | Hash, default = nil)
choice,
comment(messages : String | Enumerable(String)) : Nil
comment,
confirm(question : String, default : Bool = true) : Bool
confirm,
error(messages : String | Enumerable(String)) : Nil
error,
info(messages : String | Enumerable(String)) : Nil
info,
listing(elements : Enumerable) : Nil
listing,
new_line(count : Int32 = 1) : Nil
new_line,
note(messages : String | Enumerable(String)) : Nil
note,
section(message : String) : Nil
section,
success(messages : String | Enumerable(String)) : Nil
success,
text(messages : String | Enumerable(String)) : Nil
text,
title(message : String) : Nil
title,
warning(messages : String | Enumerable(String)) : Nil
warning
Constructor Detail
Instance Method Detail
Helper method for outputting blocks of messages that powers the #caution, #success, #note, etc. methods.
It includes various optional parameters that can be used to print customized blocks.
If type is provided, its value will be printed within []. E.g. [TYPE].
If style is provided, each of the messages will be printed in that style.
prefix represents what each of the messages should be prefixed with.
If padding is true, empty lines will be added before/after the block.
If escape is true, each of the messages will be escaped via ACON::Formatter::Output.escape.
:inherit:
!
! [CAUTION] Some Message
!
White text on a 3 line red background block with an empty line above/below the block.
Helper method for asking ACON::Question::Choice questions.
:inherit:
// Some Message
White text with one empty line above/below the message(s).
Helper method for asking ACON::Question::Confirmation questions.
:inherit:
[ERROR] Some Message
White text on a 3 line red background block with an empty line above/below the block.
:inherit:
[INFO] Some Message
Green text with two empty lines above/below the message(s).
Formats and prints a bulleted list containing the provided elements.
* Item 1
* Item 2
* Item 3
White text with one empty line above/below the list.
:inherit:
* Item 1
* Item 2
* Item 3
White text with one empty line above/below the list.
:inherit:
! [NOTE] Some Message
Green text with one empty line above/below the message(s).
:inherit:
:inherit:
Creates a section header with the provided message.
Some Message
------------
Orange text with one empty line above/below the section.
:inherit:
[OK] Some Message
Black text on a 3 line green background block with an empty line above/below the block.
:inherit:
Same as #puts but indented one space and an empty line above the message(s).
Formats and prints message as a title.
Some Message
============
Orange text with one empty line above/below the title.
:inherit:
[WARNING] Some Message
Black text on a 3 line orange background block with an empty line above/below the block.