class Chef::DelayedEvaluator
Public Instance Methods
Source
# File lib/chef/delayed_evaluator.rb, line 20 def dup # super returns a "Proc" (which seems buggy) so re-wrap it self.class.new(&super) # rubocop:disable Layout/SpaceAroundKeyword end
Calls superclass method
Source
# File lib/chef/delayed_evaluator.rb, line 25 def inspect "lazy { (evaluates to) #{call.inspect} }" end