class CC::Workspace::PathTree::FileNode

Attributes

root_path[R]

Public Class Methods

new(root_path) click to toggle source
# File lib/cc/workspace/path_tree/file_node.rb, line 5
def initialize(root_path)
  @root_path = root_path.dup.freeze
end

Public Instance Methods

add(*) click to toggle source
# File lib/cc/workspace/path_tree/file_node.rb, line 21
def add(*)
  # this space intentionally left blank
end
all_paths() click to toggle source
# File lib/cc/workspace/path_tree/file_node.rb, line 9
def all_paths
  [root_path]
end
populated?() click to toggle source
# File lib/cc/workspace/path_tree/file_node.rb, line 13
def populated?
  false
end
remove(*) click to toggle source
# File lib/cc/workspace/path_tree/file_node.rb, line 17
def remove(*)
  # this space intentionally left blank
end