Sha256: 1daaa3a951b6d6b01581ed5c7b760412da25f03f83d5ecc1a722df671a87e01c
Contents?: true
Size: 1.31 KB
Versions: 7
Compression:
Stored size: 1.31 KB
Contents
class Chef module DSL # # Module containing a method for each globally declared Resource # # Depends on declare_resource(name, created_at, &block) # # @api private module Resources def self.add_resource_dsl(dsl_name) begin module_eval(<<-EOM, __FILE__, __LINE__+1) def #{dsl_name}(*args, &block) Chef::Log.deprecation("Cannot create resource #{dsl_name} with more than one argument. All arguments except the name (\#{args[0].inspect}) will be ignored. This will cause an error in Chef 13. Arguments: \#{args}") if args.size > 1 declare_resource(#{dsl_name.inspect}, args[0], caller[0], &block) end EOM rescue SyntaxError # Handle the case where dsl_name has spaces, etc. define_method(dsl_name.to_sym) do |*args, &block| Chef::Log.deprecation("Cannot create resource #{dsl_name} with more than one argument. All arguments except the name (#{args[0].inspect}) will be ignored. This will cause an error in Chef 13. Arguments: #{args}") if args.size > 1 declare_resource(dsl_name, args[0], caller[0], &block) end end end def self.remove_resource_dsl(dsl_name) remove_method(dsl_name) if method_defined?(dsl_name) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems