class GemHadar

def clobber(*args)

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

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