Module: Inception::CliHelpers::Interactions
- Included in:
- Bosh::Providers::Cli::ProviderCli, Inception::Cli
- Defined in:
- lib/inception/cli_helpers/interactions.rb
Instance Method Summary collapse
- #bold ⇒ Object
- #clear ⇒ Object
- #cyan ⇒ Object
- #green ⇒ Object
-
#hl ⇒ Object
Helper to access HighLine for ask & menu prompts.
- #red ⇒ Object
- #yellow ⇒ Object
Instance Method Details
#bold ⇒ Object
5 |
# File 'lib/inception/cli_helpers/interactions.rb', line 5 def bold; "\033[1m" end |
#clear ⇒ Object
4 |
# File 'lib/inception/cli_helpers/interactions.rb', line 4 def clear; "\033[0m" end |
#cyan ⇒ Object
3 |
# File 'lib/inception/cli_helpers/interactions.rb', line 3 def cyan; "\033[36m" end |
#green ⇒ Object
7 |
# File 'lib/inception/cli_helpers/interactions.rb', line 7 def green; "\033[32m" end |
#hl ⇒ Object
Helper to access HighLine for ask & menu prompts
11 12 13 |
# File 'lib/inception/cli_helpers/interactions.rb', line 11 def hl @hl ||= HighLine.new end |
#red ⇒ Object
6 |
# File 'lib/inception/cli_helpers/interactions.rb', line 6 def red; "\033[31m" end |
#yellow ⇒ Object
8 |
# File 'lib/inception/cli_helpers/interactions.rb', line 8 def yellow; "\033[33m" end |