Method: CVEList::Directory#join

Defined in:
lib/cvelist/directory.rb

#join(*names) ⇒ String

Joins the file/directory name(s) with the directory path.

Parameters:

  • names (Array<String>)

    The file/directory name(s).

Returns:

  • (String)


30
31
32
# File 'lib/cvelist/directory.rb', line 30

def join(*names)
  File.join(@path,*names)
end