class Chef::Provider::Noop
Public Instance Methods
Source
# File lib/chef/provider/noop.rb, line 22 def load_current_resource; end
Source
# File lib/chef/provider/noop.rb, line 28 def method_missing(method_sym, *arguments, &block) if /^action_/.match?(method_sym.to_s) logger.trace("NoOp-ing for #{method_sym}") else super end end
Calls superclass method
Source
# File lib/chef/provider/noop.rb, line 24 def respond_to_missing?(method_sym, include_private = false) method_sym.to_s.start_with?("action_") || super end
Calls superclass method