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
# File lib/rubygems/command.rb, line 245
def arguments
""
end