Sha256: b37e05c380653806bf9cf6f69fa9385b2a2adecf7c02b7d995094643282817cc
Contents?: true
Size: 339 Bytes
Versions: 28
Compression:
Stored size: 339 Bytes
Contents
# frozen_string_literal: true module PagesCore module Templates # Configuration for the blocks on an individual template class BlockConfiguration attr_reader :name, :title, :description, :optional, :enforced def small? @size == :small end def large? !small? end end end end
Version data entries
28 entries across 28 versions & 1 rubygems