Sha256: 11b5cca98a757b5be7772052767cc8902fdf7c69a12499506f71cb34aad80639
Contents?: true
Size: 565 Bytes
Versions: 4
Compression:
Stored size: 565 Bytes
Contents
# frozen_string_literal: true # # Copyright (c) 2019-present, Blue Marble Payroll, LLC # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # module Proforma module Modeling class Table # The second lowest unit of a table. A table's header, body, and footer is each # composed of zero or more rows. class Row < GenericContainer acts_as_hashable def initialize(cells: []) super(:cells, Cell, cells) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems