Class: ActiveModel::Type::Registry
- Inherits:
-
Object
- Object
- ActiveModel::Type::Registry
- Defined in:
- lib/active_model/type/registry.rb
Instance Method Summary collapse
-
#initialize ⇒ Registry
constructor
A new instance of Registry.
- #lookup(symbol, *args, **kwargs) ⇒ Object
- #register(type_name, klass = nil, **options, &block) ⇒ Object
Constructor Details
#initialize ⇒ Registry
Returns a new instance of Registry.
7 8 9 |
# File 'lib/active_model/type/registry.rb', line 7 def initialize @registrations = [] end |
Instance Method Details
#lookup(symbol, *args, **kwargs) ⇒ Object
17 18 19 20 21 22 23 24 25 |
# File 'lib/active_model/type/registry.rb', line 17 def lookup(symbol, *args, **kwargs) registration = find_registration(symbol, *args, **kwargs) if registration registration.call(self, symbol, *args, **kwargs) else raise ArgumentError, "Unknown type #{symbol.inspect}" end end |
#register(type_name, klass = nil, **options, &block) ⇒ Object
11 12 13 14 15 |
# File 'lib/active_model/type/registry.rb', line 11 def register(type_name, klass = nil, **, &block) block ||= proc { |_, *args| klass.new(*args) } block.ruby2_keywords if block.respond_to?(:ruby2_keywords) registrations << registration_klass.new(type_name, block, **) end |