Sha256: 060d2e99a9bf383552e9ac398ec7f31a5b2f03b8375deb4dd04b9c8bf32379d5

Contents?: true

Size: 938 Bytes

Versions: 105

Compression:

Stored size: 938 Bytes

Contents

# frozen_string_literal: true

require 'eac_cli/runner'
require 'eac_ruby_utils/core_ext'

module EacCli
  module RunnerWith
    module Help
      require_sub __FILE__, require_dependency: true
      common_concern do
        include ::EacCli::Runner

        runner_definition.alt do
          bool_opt '-h', '--help', 'Show help.', usage: true, required: true
          pos_arg :any_arg_with_help, repeat: true, optional: true, visible: false
        end

        set_callback :run, :before do
          help_run
        end
      end

      def help_run
        return unless show_help?

        puts help_text
        raise ::EacCli::Runner::Exit
      end

      def help_text
        r = ::EacCli::RunnerWith::Help::Builder.new(self).to_s
        r += help_extra_text if respond_to?(:help_extra_text)
        r
      end

      def show_help?
        parsed.help? && !if_respond(:run_subcommand?, false)
      end
    end
  end
end

Version data entries

105 entries across 105 versions & 3 rubygems

Version Path
eac_tools-0.15.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.14.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.13.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.12.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.11.1 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.11.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.10.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.9.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_cli-0.27.7 lib/eac_cli/runner_with/help.rb
eac_tools-0.8.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.7.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.6.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.5.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.4.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.3.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_tools-0.2.2 sub/eac_cli/lib/eac_cli/runner_with/help.rb
eac_cli-0.27.6 lib/eac_cli/runner_with/help.rb
avm-tools-0.120.2 sub/eac_cli/lib/eac_cli/runner_with/help.rb
avm-tools-0.120.1 sub/eac_cli/lib/eac_cli/runner_with/help.rb
avm-tools-0.120.0 sub/eac_cli/lib/eac_cli/runner_with/help.rb