Sha256: adaffc97cb5260110771d61409666d10b1abe33457137ea7600b035482d45510

Contents?: true

Size: 234 Bytes

Versions: 1

Compression:

Stored size: 234 Bytes

Contents

require 'tree_graph'

class TraceTree
  module TreeGraphable

    include TreeGraph

    def label_for_tree_graph
      "#{class_and_method} #{source_location}"
    end

    def children_for_tree_graph
      callees
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trace_tree-0.1.5 lib/trace_tree/tree_graphable.rb