Module: ROM::Initializer::InstanceMethods Private

Defined in:
lib/rom/initializer.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#freezeObject

This makes sure we memoize options before an object becomes frozen



74
75
76
77
# File 'lib/rom/initializer.rb', line 74

def freeze
  options
  super
end

#optionsHash

Instance options

Returns:

  • (Hash)


62
63
64
65
66
# File 'lib/rom/initializer.rb', line 62

def options
  @__options__ ||= self.class.dry_initializer.definitions.values.each_with_object({}) do |item, obj|
    obj[item.target] = instance_variable_get(item.ivar)
  end
end