Sha256: e835af2be114b412ea8fccf71751e3109c797ec3da601997fb72da6d3a8f069f
Contents?: true
Size: 339 Bytes
Versions: 8
Compression:
Stored size: 339 Bytes
Contents
class CmsTag::FieldInteger < CmsBlock include CmsTag def self.regex_tag_signature(label = nil) label ||= /[\w\-]+/ /\{\{\s*cms:field:(#{label}):integer\s*\}\}/ end def content=(value) write_attribute(:content, value) end def content read_attribute(:content) end def render '' end end
Version data entries
8 entries across 8 versions & 2 rubygems