Class: Karafka::Cli::Info

Inherits:
Base
  • Object
show all
Defined in:
lib/karafka/cli/info.rb

Overview

Info Karafka Cli action

Constant Summary collapse

<<~BANNER

  @@@                                             @@@@@  @@@
  @@@                                            @@@     @@@
  @@@  @@@    @@@@@@@@@   @@@ @@@   @@@@@@@@@  @@@@@@@@  @@@  @@@@   @@@@@@@@@
  @@@@@@     @@@    @@@   @@@@@    @@@    @@@    @@@     @@@@@@@    @@@    @@@
  @@@@@@@    @@@    @@@   @@@     @@@@    @@@    @@@     @@@@@@@    @@@    @@@
  @@@  @@@@  @@@@@@@@@@   @@@      @@@@@@@@@@    @@@     @@@  @@@@   @@@@@@@@@@

BANNER

Instance Attribute Summary

Attributes inherited from Base

#cli

Instance Method Summary collapse

Methods inherited from Base

bind_to, desc, #initialize, load, option

Constructor Details

This class inherits a constructor from Karafka::Cli::Base

Instance Method Details

#callObject

Print configuration details and other options of your application



23
24
25
26
# File 'lib/karafka/cli/info.rb', line 23

def call
  Karafka.logger.info(BANNER)
  Karafka.logger.info((core_info + license_info).join("\n"))
end