class ChefCompat::CopiedFromChef::Chef::Provider::Noop
Public Instance Methods
load_current_resource()
click to toggle source
# File files/lib/chef_compat/copied_from_chef/chef/provider/noop.rb, line 30 def load_current_resource; end
method_missing(method_sym, *arguments, &block)
click to toggle source
Calls superclass method
# File files/lib/chef_compat/copied_from_chef/chef/provider/noop.rb, line 36 def method_missing(method_sym, *arguments, &block) if method_sym.to_s =~ /^action_/ Chef::Log.debug("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 files/lib/chef_compat/copied_from_chef/chef/provider/noop.rb, line 32 def respond_to_missing?(method_sym, include_private = false) method_sym.to_s.start_with?("action_") || super end