Class: Hiera::Backend::Eyaml::Subcommands::Help

Inherits:
Hiera::Backend::Eyaml::Subcommand show all
Defined in:
lib/hiera/backend/eyaml/subcommands/help.rb

Class Method Summary collapse

Methods inherited from Hiera::Backend::Eyaml::Subcommand

all_options, attach_option, find, load_config_file, parse, prettyname, validate

Class Method Details

.descriptionObject



13
14
15
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 13

def self.description
  'this page'
end

.executeObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 17

def self.execute
  puts <<~EOS
    Welcome to eyaml #{Eyaml::VERSION}#{' '}

    Usage:
    eyaml subcommand [global-opts] [subcommand-opts]

    Available subcommands:
    #{Eyaml.subcommands.collect do |command|
      command_class = Subcommands.const_get(Utils.camelcase(command))
      format '%15s: %-65s', command.downcase, command_class.description unless command_class.hidden?
    end.compact.join("\n")}

    For more help on an individual command, use --help on that command

    Installed Plugins:
    #{Plugins.plugins.collect do |plugin| # {' '}
      "\t" + plugin.name.split('hiera-eyaml-').last
    end.join("\n")}
  EOS
end

.hidden?Boolean

Returns:

  • (Boolean)


39
40
41
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 39

def self.hidden?
  true
end

.optionsObject



9
10
11
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 9

def self.options
  []
end