Class: ActiveModel::Type::Registry
- Defined in:
- activemodel/lib/active_model/type/registry.rb
Overview
:nodoc:
Instance Method Summary collapse
- 
  
    
      #initialize  ⇒ Registry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Registry. 
- #initialize_copy(other) ⇒ Object
- #lookup(symbol) ⇒ Object
- #register(type_name, klass = nil, &block) ⇒ Object
Constructor Details
#initialize ⇒ Registry
Returns a new instance of Registry.
| 6 7 8 | # File 'activemodel/lib/active_model/type/registry.rb', line 6 def initialize @registrations = {} end | 
Instance Method Details
#initialize_copy(other) ⇒ Object
| 10 11 12 13 | # File 'activemodel/lib/active_model/type/registry.rb', line 10 def initialize_copy(other) @registrations = @registrations.dup super end | 
#lookup(symbol) ⇒ Object
| 23 24 25 26 27 28 29 30 31 | # File 'activemodel/lib/active_model/type/registry.rb', line 23 def lookup(symbol, ...) registration = registrations[symbol] if registration registration.call(symbol, ...) else raise ArgumentError, "Unknown type #{symbol.inspect}" end end | 
#register(type_name, klass = nil, &block) ⇒ Object
| 15 16 17 18 19 20 21 | # File 'activemodel/lib/active_model/type/registry.rb', line 15 def register(type_name, klass = nil, &block) unless block_given? block = proc { |_, *args| klass.new(*args) } block.ruby2_keywords if block.respond_to?(:ruby2_keywords) end registrations[type_name] = block end |