Sha256: d66120ef075e22050b0ae3b31ce6225f8206669c9d4da980d0c6cfa0971c023d
Contents?: true
Size: 507 Bytes
Versions: 187
Compression:
Stored size: 507 Bytes
Contents
module CC class Workspace class PathTree class FileNode def initialize(root_path) @root_path = root_path.dup.freeze end def all_paths [root_path] end def populated? false end def remove(*) # this space intentionally left blank end def add(*) # this space intentionally left blank end private attr_reader :root_path end end end end
Version data entries
187 entries across 187 versions & 2 rubygems