Sha256: 0b9d29ef2637f8bce43b0d08b718874d7f06e54bba84bc7994711ed26ea95537
Contents?: true
Size: 915 Bytes
Versions: 72
Compression:
Stored size: 915 Bytes
Contents
module Tenon module TenonContent module RowTypes class FourColumnImageAndText < TenonContent::RowTypes::Base class << self def add_pieces_to(row) if row.pieces.empty? row.pieces.build(piece_type: 'Image', position: 0, size: 'three') row.pieces.build(piece_type: 'Text', position: 1, size: 'three') row.pieces.build(piece_type: 'Image', position: 2, size: 'three') row.pieces.build(piece_type: 'Text', position: 3, size: 'three') row.pieces.build(piece_type: 'Image', position: 4, size: 'three') row.pieces.build(piece_type: 'Text', position: 5, size: 'three') row.pieces.build(piece_type: 'Image', position: 6, size: 'three') row.pieces.build(piece_type: 'Text', position: 7, size: 'three') end end end end end end end
Version data entries
72 entries across 72 versions & 1 rubygems