Sha256: 0c32aa548cc444f23e72ea1679501c267183633c7a19c9df0b6a569cbdf62bdf

Contents?: true

Size: 1.41 KB

Versions: 17

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

module ActiveModel
  # :stopdoc:
  module Type
    class Registry
      def initialize
        @registrations = []
      end

      def register(type_name, klass = nil, **options, &block)
        block ||= proc { |_, *args| klass.new(*args) }
        registrations << registration_klass.new(type_name, block, **options)
      end

      def lookup(symbol, *args)
        registration = find_registration(symbol, *args)

        if registration
          registration.call(self, symbol, *args)
        else
          raise ArgumentError, "Unknown type #{symbol.inspect}"
        end
      end

      private
        attr_reader :registrations

        def registration_klass
          Registration
        end

        def find_registration(symbol, *args)
          registrations.find { |r| r.matches?(symbol, *args) }
        end
    end

    class Registration
      # Options must be taken because of https://bugs.ruby-lang.org/issues/10856
      def initialize(name, block, **)
        @name = name
        @block = block
      end

      def call(_registry, *args, **kwargs)
        if kwargs.any? # https://bugs.ruby-lang.org/issues/10856
          block.call(*args, **kwargs)
        else
          block.call(*args)
        end
      end

      def matches?(type_name, *args, **kwargs)
        type_name == name
      end

      private
        attr_reader :name, :block
    end
  end
  # :startdoc:
end

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
activemodel-6.0.2.2 lib/active_model/type/registry.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/registry.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/registry.rb
activemodel-6.0.2.1 lib/active_model/type/registry.rb
activemodel-6.0.2 lib/active_model/type/registry.rb
activemodel-6.0.2.rc2 lib/active_model/type/registry.rb
activemodel-6.0.2.rc1 lib/active_model/type/registry.rb
activemodel-6.0.1 lib/active_model/type/registry.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/registry.rb
activemodel-6.0.1.rc1 lib/active_model/type/registry.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/registry.rb
activemodel-6.0.0 lib/active_model/type/registry.rb
activemodel-6.0.0.rc2 lib/active_model/type/registry.rb
activemodel-6.0.0.rc1 lib/active_model/type/registry.rb
activemodel-6.0.0.beta3 lib/active_model/type/registry.rb
activemodel-6.0.0.beta2 lib/active_model/type/registry.rb
activemodel-6.0.0.beta1 lib/active_model/type/registry.rb