Welcome to mirror list, hosted at ThFree Co, Russian Federation.

class_attributes.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eea7590cbd5ca49773d690b2f4d64795b93921d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

module Gitlab
  module ClassAttributes
    extend ActiveSupport::Concern

    class_methods do
      protected

      # Returns an attribute declared on this class or its parent class.
      # This approach allows declared attributes to be inherited by
      # child classes.
      def get_class_attribute(name)
        class_attributes[name] || superclass_attributes(name)
      end

      def set_class_attribute(name, value)
        class_attributes[name] = value

        after_hooks.each(&:call)

        value
      end

      def after_set_class_attribute(&block)
        after_hooks << block
      end

      private

      def class_attributes
        @class_attributes ||= {}
      end

      def superclass_attributes(name)
        return unless superclass.include? Gitlab::ClassAttributes

        superclass.get_class_attribute(name)
      end

      def after_hooks
        @after_hooks ||= []
      end
    end
  end
end