class GemHadar

def clean(*args)

Returns:
  • (FileList, nil) - the CLEAN file list when no arguments provided,

Parameters:
  • args (Array) -- optional list of files to add to the CLEAN list
def clean(*args)
  if args.empty?
    CLEAN
  else
    CLEAN.include(*args)
  end
end