method

arguments

v2_4_6 - Show latest stable - Class: Gem::Command
arguments()
public

Override to provide details of the arguments a command takes. It should return a left-justified string, one argument per line.

For example:

def usage
  "#{program_name} FILE [FILE ...]"
end

def arguments
  "FILE          name of file to find"
end