class Chef::Property

Public Instance Methods

_original_get(resource, *args)

12.9 introduced a new optional parameter to `get()` to avoid a nil-set warning. When their method gets called with 2 args, we need to ignore and call with 1.

Alias for: get
get(resource, *args) click to toggle source
# File files/lib/chef_compat/monkeypatches/chef/property.rb, line 10
def get(resource, *args)
  _original_get(resource)
end
Also aliased as: _original_get