module Hippo_eyeDoc::Outputters::PrettyString::RepeatingComponent

Public Instance Methods

pretty_print(pp) click to toggle source
# File lib/hippo_eyeDoc/outputters/pretty_string.rb, line 30
def pretty_print(pp)
  pp.text to_pretty_string
end
to_pretty_string(indent_level = 0) click to toggle source
# File lib/hippo_eyeDoc/outputters/pretty_string.rb, line 34
def to_pretty_string(indent_level = 0)
  map{|component| component.to_pretty_string(indent_level)}.join
end