Sha256: 564982c2d4b40a4901c071e9ccfd925975c9f09845ecaf5394918759c1a6c054
Contents?: true
Size: 559 Bytes
Versions: 41
Compression:
Stored size: 559 Bytes
Contents
require 'fig/command/action' require 'fig/command/action/role/has_no_sub_action' module Fig; end class Fig::Command; end module Fig::Command::Action; end class Fig::Command::Action::HelpLong include Fig::Command::Action include Fig::Command::Action::Role::HasNoSubAction def options() return %w<--help-long> end def execute_immediately_after_command_line_parse? return true end def configure(options) @help_message = options.full_help_message end def execute() puts @help_message return EXIT_SUCCESS end end
Version data entries
41 entries across 41 versions & 1 rubygems