Method: Labor::Config#each

Defined in:
lib/labor/config.rb

#each(&block) ⇒ Object

Call a block for each key in the config.

block - The Block to execute for each element.

Returns a Boolean of whether or not the key exists.



81
82
83
# File 'lib/labor/config.rb', line 81

def each(&block)
  @config.each(&block)
end