Class: RDoc::Generator::SDoc::FilesTree

Inherits:
Object
  • Object
show all
Defined in:
lib/sdoc/generator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#childrenObject (readonly)

Returns the value of attribute children.



213
214
215
# File 'lib/sdoc/generator.rb', line 213

def children
  @children
end

Instance Method Details

#add(path, url) ⇒ Object



214
215
216
217
218
219
220
221
222
223
# File 'lib/sdoc/generator.rb', line 214

def add(path, url)
  path = path.split(File::SEPARATOR) unless Array === path
  @children ||= {}
  if path.length == 1
    @children[path.first] = url
  else
    @children[path.first] ||= FilesTree.new
    @children[path.first].add(path[1, path.length], url)
  end
end