Method: #help_msg
- Defined in:
- ext/lib/tkextlib/pkg_checker.rb
#help_msg ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'ext/lib/tkextlib/pkg_checker.rb', line 16 def help_msg print "Usage: #{$0} [-l] [-v] [-h] [--] [dir]\n" print "\tIf dir is omitted, check the directry that this command exists.\n" print "\tAvailable options are \n" print "\t -l : Add dir to $LOAD_PATH\n" print "\t (If dir == '<parent>/tkextlib', add <parent> also.)\n" print "\t -v : Verbose mode (show reason of fail)\n" print "\t -h : Show this message\n" print "\t -- : End of options\n" end |