diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-06-08 13:31:40 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-06-08 13:31:40 -0700 |
commit | eb1c36404da38801ca755deccfd754512dd74782 (patch) | |
tree | ab6264e3433e6226524da1fb889b36436cc8d70f /lib/chef/deprecated.rb | |
parent | aa55fd1ade2ec9fd052e3eb0a66f8c6a1d894c19 (diff) | |
download | chef-eb1c36404da38801ca755deccfd754512dd74782.tar.gz |
Deprecate property namespace magic
This forces everyone to starting using new_resource.property_name
instead of just property_name.
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/deprecated.rb')
-rw-r--r-- | lib/chef/deprecated.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/chef/deprecated.rb b/lib/chef/deprecated.rb index 372609c10a..2cf0f3d1bc 100644 --- a/lib/chef/deprecated.rb +++ b/lib/chef/deprecated.rb @@ -248,6 +248,16 @@ class Chef end end + class NamespaceCollisions < Base + def id + 19 + end + + def target + "namespace_collisions.html" + end + end + # id 3694 was deleted class Generic < Base |