Skip to content

Class: HTM::ConfigSection

Inherits: Object

ConfigSection provides method access to nested configuration hashes

@example

section = ConfigSection.new(host: 'localhost', port: 5432)
section.host  # => 'localhost'
section.port  # => 5432

Instance Methods

[](key)

[]=(key, value)

each(&block)

initialize(hash = {})

@return [ConfigSection] a new instance of ConfigSection

keys()

merge(other)

method_missing(method, *args, &block)

respond_to_missing?(method, include_private = false)

@return [Boolean]

to_h()