class Hanami::Config::DB

Hanami DB config

@since 2.2.0 @api public

Private Instance Methods

method_missing(name, *args, &block) click to toggle source
Calls superclass method
# File lib/hanami/config/db.rb, line 20
def method_missing(name, *args, &block)
  if config.respond_to?(name)
    config.public_send(name, *args, &block)
  else
    super
  end
end
respond_to_missing?(name, _include_all = false) click to toggle source
Calls superclass method
# File lib/hanami/config/db.rb, line 28
def respond_to_missing?(name, _include_all = false)
  config.respond_to?(name) || super
end