我有一些可变长度的文本,我正在插入到Prawn边界框中。根据文本的长度,结果将是任意长度的页面,每个页面都有一个边界框。我希望每个这些边界框都被描边。我可以抚摸第一个盒子和最后一个盒子,但是无法弄清楚如何抚摸中间的那个......
bounding_box([0, 500], :width => 200, :height => 150) do
stroke_bounds # This will stroke the first box
text "This text will fill up many boxes. " * 100
stroke_bounds # This will stroke the last box
end