Method: Chef::DataBagItem#respond_to_missing?
- Defined in:
- lib/chef/data_bag_item.rb
#respond_to_missing?(method_name, include_private = false) ⇒ Boolean
55 56 57 |
# File 'lib/chef/data_bag_item.rb', line 55 def respond_to_missing?(method_name, include_private = false) @raw_data.respond_to?(method_name, include_private) || super end |