class Fig::Command::Action::HelpLong

Public Instance Methods

configure(options) click to toggle source
# File lib/fig/command/action/help_long.rb, line 22
def configure(options)
  @help_message = options.full_help_message
end
execute() click to toggle source
# File lib/fig/command/action/help_long.rb, line 26
def execute()
  puts @help_message

  return EXIT_SUCCESS
end
execute_immediately_after_command_line_parse?() click to toggle source
# File lib/fig/command/action/help_long.rb, line 18
def execute_immediately_after_command_line_parse?
  return true
end
options() click to toggle source
# File lib/fig/command/action/help_long.rb, line 14
def options()
  return %w<--help-long>
end