Method: Chef::Node#each

Defined in:
lib/chef/node.rb

#each(&block) ⇒ Object

Yield each key of the top level to the block.



252
253
254
# File 'lib/chef/node.rb', line 252

def each(&block)
  attributes.each(&block)
end