# File lib/puppet/indirector/indirection.rb, line 79 79: def doc 80: text = "" 81: 82: if defined? @doc and @doc 83: text += scrub(@doc) + "\n\n" 84: end 85: 86: if s = terminus_setting() 87: text += "* **Terminus Setting**: %s" % terminus_setting 88: end 89: 90: text 91: end