each()
For a block.
Receive the section and its pairs for the current configuration.
config.each do |section, key, value| # ... end
# File ext/openssl/lib/openssl/config.rb, line 438 def each @data.each do |section, hash| hash.each do |key, value| yield [section, key, value] end end end