Method: Chef::Node#method_missing
- Defined in:
- lib/chef/node.rb
#method_missing(method, *args, &block) ⇒ Object
Only works for attribute fetches, setting is no longer supported XXX: this should be deprecated
263 264 265 |
# File 'lib/chef/node.rb', line 263 def method_missing(method, *args, &block) attributes.public_send(method, *args, &block) end |