Sha256: ad2b6304138a63725660b7216b8cbc69b760077c2f22ec30838873d06e11940e
Contents?: true
Size: 767 Bytes
Versions: 12
Compression:
Stored size: 767 Bytes
Contents
module Coprl module Presenters module DSL module Components module Mixins module DateTimeFields def datetime_field(**attribs, &block) self << Components::DatetimeField.new(parent: self, **attribs, &block) end def date_field(**attribs, &block) self << Components::DateField.new(parent: self, **attribs, &block) end def time_field(**attribs, &block) self << Components::TimeField.new(parent: self, **attribs, &block) end end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems