module Study::Methods
Public Instance Methods
study(target, max_depth: 10, plain: false)
click to toggle source
# File lib/study.rb, line 7 def study(target, max_depth: 10, plain: false) TreeNode.convert(target).draw(max_depth: max_depth, plain: plain) end