Sha256: bdd0b4428059122c0023c31deea5afe1bd85a4f6ba586a034240e591e152d001
Contents?: true
Size: 1002 Bytes
Versions: 21
Compression:
Stored size: 1002 Bytes
Contents
require 'hiera/backend/eyaml/subcommand' require 'hiera/backend/eyaml' class Hiera module Backend module Eyaml module Subcommands class Help < Subcommand def self.options [] end def self.description "this page" end def self.execute puts <<-EOS Welcome to eyaml #{Eyaml::VERSION} Usage: eyaml subcommand [global-opts] [subcommand-opts] Available subcommands: #{Eyaml.subcommands.collect {|command| command_class = Subcommands.const_get(Utils.camelcase command) sprintf "%15s: %-65s", command.downcase, command_class.description unless command_class.hidden? }.compact.join("\n")} For more help on an individual command, use --help on that command Installed Plugins: #{Plugins.plugins.collect {|plugin| "\t" + plugin.name.split("hiera-eyaml-").last }.join("\n")} EOS end def self.hidden? true end end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems