lib/ole/support.rb in ruby-ole-1.2.7 vs lib/ole/support.rb in ruby-ole-1.2.8
- old
+ new
@@ -87,10 +87,10 @@
# are loaded on request in pst), because that forces the whole tree to
# be loaded. So, the methods should only call #each_child once, and
# breadth first iteration holds its own copy of the children around.
#
# Main methods are #recursive, and #to_tree
-module RecursivelyEnumerable
+module RecursivelyEnumerable # :nodoc:
def each_recursive_depth_first(&block)
each_child do |child|
yield child
if child.respond_to? :each_recursive_depth_first
child.each_recursive_depth_first(&block)