lib/hexapdf/layout.rb in hexapdf-0.23.0 vs lib/hexapdf/layout.rb in hexapdf-0.24.0

- old
+ new

@@ -2,11 +2,11 @@ # #-- # This file is part of HexaPDF. # # HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby -# Copyright (C) 2014-2021 Thomas Leitner +# Copyright (C) 2014-2022 Thomas Leitner # # HexaPDF is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License version 3 as # published by the Free Software Foundation with the addition of the # following permission added to Section 15 as permitted in Section 7(a): @@ -48,12 +48,15 @@ autoload(:Line, 'hexapdf/layout/line') autoload(:TextShaper, 'hexapdf/layout/text_shaper') autoload(:TextLayouter, 'hexapdf/layout/text_layouter') autoload(:Box, 'hexapdf/layout/box') autoload(:Frame, 'hexapdf/layout/frame') + autoload(:BoxFitter, 'hexapdf/layout/box_fitter') autoload(:WidthFromPolygon, 'hexapdf/layout/width_from_polygon') autoload(:TextBox, 'hexapdf/layout/text_box') autoload(:ImageBox, 'hexapdf/layout/image_box') + autoload(:ColumnBox, 'hexapdf/layout/column_box') + autoload(:ListBox, 'hexapdf/layout/list_box') end end