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

Version Path
hiera-eyaml-3.4.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.3.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.2.2 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.2.1 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.2.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.1.1 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.1.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-3.0.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.1.0 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.1.0.rc2 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.1.0.rc1 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.8 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.7 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.6 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.5 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.4 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.3 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.2 lib/hiera/backend/eyaml/subcommands/help.rb
hiera-eyaml-2.0.1 lib/hiera/backend/eyaml/subcommands/help.rb
clarenceb-hiera-eyaml-2.0.1 lib/hiera/backend/eyaml/subcommands/help.rb