Sha256: f3c358729a2d9f0728c22ba8065b8c98d8e31859bd9dfe3280d2c06e475ab0e1
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require "stringio" module CobraCommander module Output # Prints the tree in a nice tree form class AsciiTree SPACE = " " BAR = "│ " TEE = "├── " CORNER = "└── " def initialize(component) @component = component end def to_s StringIO.new.tap do |io| io.puts @component.name list_dependencies(io, @component) end.string end private def list_dependencies(io, component, outdents = []) component.dependencies.each do |dep| decide_on_line(io, component, dep, outdents) end nil end def decide_on_line(io, parent, dep, outdents) if parent.dependencies.last != dep add_tee(io, outdents, dep) else add_corner(io, outdents, dep) end end def add_tee(io, outdents, dep) io.puts line(outdents, TEE, dep.name) list_dependencies(io, dep, (outdents + [BAR])) end def add_corner(io, outdents, dep) io.puts line(outdents, CORNER, dep.name) list_dependencies(io, dep, (outdents + [SPACE])) end def line(outdents, sym, name) (outdents + [sym] + [name]).join end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cobra_commander-0.14.0 | lib/cobra_commander/output/ascii_tree.rb |
cobra_commander-0.13.0 | lib/cobra_commander/output/ascii_tree.rb |