Module: EacCli::RunnerWith::Help
- Defined in:
- lib/eac_cli/runner_with/help.rb,
lib/eac_cli/runner_with/help/layout.rb,
lib/eac_cli/runner_with/help/builder.rb,
lib/eac_cli/runner_with/help/builder/alternative.rb
Defined Under Namespace
Modules: Layout
Classes: Builder
Instance Method Summary
collapse
Instance Method Details
#help_join_sections(*sections) ⇒ String
29
30
31
|
# File 'lib/eac_cli/runner_with/help.rb', line 29
def help_join_sections(*sections)
::EacCli::RunnerWith::Help::Layout.join_sections(*sections)
end
|
#help_list_section(title, items) ⇒ String
23
24
25
|
# File 'lib/eac_cli/runner_with/help.rb', line 23
def help_list_section(title, items)
::EacCli::RunnerWith::Help::Layout.list_section(title, items)
end
|
33
34
35
36
37
38
|
# File 'lib/eac_cli/runner_with/help.rb', line 33
def help_run
return unless show_help?
puts help_text
raise ::EacCli::Runner::Exit
end
|
#help_text ⇒ String
41
42
43
|
# File 'lib/eac_cli/runner_with/help.rb', line 41
def help_text
::EacCli::RunnerWith::Help::Builder.new(self).to_s
end
|
#show_help? ⇒ Boolean
45
46
47
|
# File 'lib/eac_cli/runner_with/help.rb', line 45
def show_help?
parsed.help? && !if_respond(:run_subcommand?, false)
end
|