# File lib/fastcst/command/list.rb, line 39 39: def print_children(repo, id) 40: # and now go through each child and print it tabbed in with the id 41: children = nil 42: if repo['Path'].empty? 43: children = repo.list_changesets 44: else 45: children = repo.find_all_children(id) 46: end 47: 48: # make a new hash that 49: children.each do |id| 50: puts "\t#{repo.build_readable_name(id)} -- #{id}" 51: end 52: end