Sha256: b9414c312ed10d79d07bcb690b20647466f875bfc90305b55b073d896596a416
Contents?: true
Size: 568 Bytes
Versions: 15
Compression:
Stored size: 568 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::Help include Fig::Command::Action include Fig::Command::Action::Role::HasNoSubAction def options() return %w<--help> end def execute_immediately_after_command_line_parse? return true end def configure(options) @help_message = options.short_help_message end def execute() puts @help_message return EXIT_SUCCESS end end
Version data entries
15 entries across 15 versions & 1 rubygems