Sha256: 0bfb18fd792cedb4ca34aada9e95c4acf400ee275301bcdfa26a73c1693579db
Contents?: true
Size: 576 Bytes
Versions: 15
Compression:
Stored size: 576 Bytes
Contents
# coding: utf-8 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
15 entries across 15 versions & 1 rubygems