Method: FileTree#join

Defined in:
lib/filetree.rb

#join(*args) ⇒ Object

Joins the given pathnames onto self to create a new FileTree object.



52
53
54
# File 'lib/filetree.rb', line 52

def join(*args)
  FileTree.new(super(*args))
end