Sha256: c01e9ba5bb1858f951b77126eda7c20e25b553191990ccd4a604ceca2b62f13a
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
module Clamp module Attribute module Declaration protected def declare_attribute(attribute, &block) define_reader_for(attribute) define_default_for(attribute) if attribute.multivalued? define_appender_for(attribute, &block) define_multi_writer_for(attribute) else define_simple_writer_for(attribute, &block) end end private def define_reader_for(attribute) define_method(attribute.read_method) do attribute.of(self)._read end end def define_default_for(attribute) define_method(attribute.default_method) do attribute.default_value end end def define_simple_writer_for(attribute, &block) define_method(attribute.write_method) do |value| value = instance_exec(value, &block) if block attribute.of(self).set(value) end end def define_appender_for(attribute, &block) define_method(attribute.append_method) do |value| value = instance_exec(value, &block) if block attribute.of(self)._append(value) end end def define_multi_writer_for(attribute) define_method(attribute.write_method) do |values| attribute.of(self)._replace(values) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clamp-1.1.0 | lib/clamp/attribute/declaration.rb |