Module: Ronin::Core::CLI::Help::Banner
- Includes:
- Banner
- Defined in:
- lib/ronin/core/cli/help/banner.rb
Overview
Adds the Ronin ASCII art banner to the --help
output.
Constant Summary
Constants included from Banner
Instance Method Summary collapse
-
#help ⇒ Object
Prints the Ronin ASCII art banner and the
--help
output.
Methods included from Banner
Instance Method Details
#help ⇒ Object
Note:
If stdout
is not a TTY, the Ronin ASCII art banner will be
omitted.
Prints the Ronin ASCII art banner and the --help
output.
40 41 42 43 44 |
# File 'lib/ronin/core/cli/help/banner.rb', line 40 def help if stdout.tty? super end |