# File ../../../../../lib/review/unfold.rb, line 26 def initialize(indent_paragraph = false) @indent_paragraph = indent_paragraph end
# File ../../../../../lib/review/unfold.rb, line 22 def self.unfold(f) new.unfold(f) end
unfold(f) -> String unfold(input, output) -> nil
# File ../../../../../lib/review/unfold.rb, line 32 def unfold(input, output = nil) if output @output = output do_unfold input nil else @output = StringIO.new do_unfold input @output.string end end