Method: ROM::Mapper::DSL::ClassMethods#respond_to_missing?

Defined in:
lib/rom/mapper/dsl.rb

#respond_to_missing?(name, _include_private = false) ⇒ Boolean

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

Returns:

  • (Boolean)


70
71
72
# File 'lib/rom/mapper/dsl.rb', line 70

def respond_to_missing?(name, _include_private = false)
  dsl.respond_to?(name) || super
end