Changes for version 0.02

  • changed all Visitors to use 'base' for inheritance, it just cuts down on the line noise.
  • improved the documentation in Tree::Simple::VisitorFactory to include a categorized list of available visitors
  • added Tree::Simple::Visitor::LoadDirectoryTree Visitor
    • added tests for this
  • added Tree::Simple::Visitor::CreateDirectoryTree Visitor
    • added tests for this
  • added Tree::Simple::Visitor::FindByUID Visitor
    • added tests for this
    • thanks to Vitor Mori for the idea for this Visitor
  • added Tree::Simple::Visitor::PreOrderTraversal Visitor
    • added tests for this
  • added Tree::Simple::Visitor::Sort Visitor
    • added tests for this
    • thanks to Vitor Mori for most of the code and the idea for this Visitor
  • added Tree::Simple::FromNestedArray, Tree::Simple::FromNestedHash and their compliments Tree::Simple::ToNestedArray and Tree::Simple::ToNestedHash
    • added tests for these
  • added the pod.t and pod_coverage.t tests

Modules

A Visitor for breadth-first traversal a Tree::Simple hierarchy
A Visitor for create a set of directories and files from a Tree::Simple object
A Visitor for finding an element in a Tree::Simple hierarchy with a path
A Visitor for finding an element in a Tree::Simple hierarchy by UID
A Visitor for creating Tree::Simple objects from nested array trees.
A Visitor for creating Tree::Simple objects from nested hash trees.
A Visitor for fetching all the descendents of a Tree::Simple object
A Visitor for loading the contents of a directory into a Tree::Simple object
A Visitor for finding the path back a Tree::Simple object's root
A Visitor for post-order traversal a Tree::Simple hierarchy
A Visitor for pre-order traversal a Tree::Simple hierarchy
A Visitor for sorting a Tree::Simple object heirarchy
A Visitor for creating nested array trees from Tree::Simple objects.
A Visitor for creating nested hash trees from Tree::Simple objects.
A factory object for dispensing Visitor objects