class Chef::Provider::Noop

Public Instance Methods

load_current_resource() click to toggle source
# File lib/chef/provider/noop.rb, line 22
def load_current_resource; end
method_missing(method_sym, *arguments, &block) click to toggle source
Calls superclass method
# 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
respond_to_missing?(method_sym, include_private = false) click to toggle source
Calls superclass method
# 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