Sha256: b347cf919c5c19b1fa0e884aa939f6f8f67b0456c76ddbf1ee74e99ab447051a

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

# frozen_string_literal: true
#
# ronin-vulns - A Ruby library for blind vulnerability testing.
#
# Copyright (c) 2022-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-vulns is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-vulns is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ronin-vulns.  If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/vulns/root'
require 'ronin/core/cli/completion_command'

module Ronin
  module Vulns
    class CLI
      module Commands
        #
        # Manages the shell completion rules for `ronin-vulns`.
        #
        # ## Usage
        #
        #     ronin-vulns completion [options]
        #
        # ## Options
        #
        #         --print                      Prints the shell completion file
        #         --install                    Installs the shell completion file
        #         --uninstall                  Uninstalls the shell completion file
        #     -h, --help                       Print help information
        #
        # ## Examples
        #
        #     ronin-vulns completion --print
        #     ronin-vulns completion --install
        #     ronin-vulns completion --uninstall
        #
        # @since 0.2.0
        #
        class Completion < Core::CLI::CompletionCommand

          completion_file File.join(ROOT,'data','completions','ronin-vulns')

          man_dir File.join(ROOT,'man')
          man_page 'ronin-vulns-completion.1'

          description 'Manages the shell completion rules for ronin-vulns'

        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ronin-vulns-0.2.0 lib/ronin/vulns/cli/commands/completion.rb
ronin-vulns-0.2.0.rc1 lib/ronin/vulns/cli/commands/completion.rb