Sha256: d267584ce09d83b0c5d318bdd86d68d9dffc5235b7d0bea70d634916370a2d95
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Micro module Attributes module Macros def __attributes @__attributes ||= Set.new end def attribute?(name) __attributes.member?(name.to_s) end def __attribute(name) return false if attribute?(name) __attributes.add(name) attr_reader(name) return true end def __attributes_data @__attributes_data ||= {} end def __attribute_data(name, value) __attributes_data[name] = value if __attribute(name) end def attribute(arg) return __attribute_data(arg.to_s, nil) unless arg.is_a?(Hash) arg.each { |key, value| __attribute_data(key.to_s, value) } end def attributes(*args) return __attributes.to_a if args.empty? args.flatten.each { |arg| attribute(arg) } end def attributes_data(arg) __attributes_data.merge( Utils.hash_argument!(arg) .each_with_object({}) { |(key, val), memo| memo[key.to_s] = val } ) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
u-attributes-0.5.0 | lib/micro/attributes/macros.rb |