Sha256: b5a35b1d7a9b94bdf2fea3d591ff9955638a63f7e59990ab10342153e78ada1a

Contents?: true

Size: 1.45 KB

Versions: 1

Compression:

Stored size: 1.45 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, allow_to_override)
        __attributes_data[name] = value if allow_to_override || __attribute(name)
      end

      def __attribute_data!(arg, allow_to_override:)
        return __attribute_data(arg.to_s, nil, allow_to_override) unless arg.is_a?(Hash)

        arg.each { |key, value| __attribute_data(key.to_s, value, allow_to_override) }
      end

      def attribute(arg)
        __attribute_data!(arg, allow_to_override: false)
      end

      def attribute!(arg)
        __attribute_data!(arg, allow_to_override: true)
      end

      def attributes(*args)
        return __attributes.to_a if args.empty?

        args.flatten.each { |arg| attribute(arg) }
      end

      def attributes!(*args)
        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.6.0 lib/micro/attributes/macros.rb