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



15
16
17
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 15

def self.description
  "this page"
end

.executeObject



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

def self.execute

  puts "Welcome to eyaml \#{Eyaml::VERSION}\n\nUsage:\neyaml subcommand [global-opts] [subcommand-opts]\n\nAvailable subcommands:\n\#{Eyaml.subcommands.collect {|command|\ncommand_class = Subcommands.const_get(Utils.camelcase command)\nsprintf \"%15s: %-65s\", command.downcase, command_class.description unless command_class.hidden?\n}.compact.join(\"\\n\")}\n\nFor more help on an individual command, use --help on that command\n\nInstalled Plugins:\n\#{Plugins.plugins.collect {|plugin|\n\"\\t\" + plugin.name.split(\"hiera-eyaml-\").last\n}.join(\"\\n\")}\n"
end

.hidden?Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 42

def self.hidden?
  true
end

.optionsObject



11
12
13
# File 'lib/hiera/backend/eyaml/subcommands/help.rb', line 11

def self.options
  []
end