Sha256: a26846e44f222849f144700360182d2f66126cf6e315f7a22b78b1cbc37b93d4
Contents?: true
Size: 308 Bytes
Versions: 23
Compression:
Stored size: 308 Bytes
Contents
module TypeStation module Concerns module Templatable extend ActiveSupport::Concern included do field :template_name, type: String, default: 'undefined' end def template_name? template_name.present? && template_name != 'undefined' end end end end
Version data entries
23 entries across 23 versions & 1 rubygems