Sha256: 0fd1fcdeeefa3e27bfd359efe3c9f2359f547ba279f206ee380673c23e87f4be
Contents?: true
Size: 486 Bytes
Versions: 4
Compression:
Stored size: 486 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 # A table section has zero or more rows. class Section < GenericContainer acts_as_hashable def initialize(rows: []) super(:rows, Row, rows) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems