diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-02 15:24:47 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-02 15:24:47 -0800 |
commit | 1a423fe485a77d98ee94004dcc1a7ef3364d9ee3 (patch) | |
tree | 3b30c54b9e000d1997b1e6f1bfa7e9903ab0da8c /lib/chef/deprecated.rb | |
parent | 46d19a502fb8824fa3fccf4535fcfa226c4e9473 (diff) | |
download | chef-1a423fe485a77d98ee94004dcc1a7ef3364d9ee3.tar.gz |
Chef-13 remove resource cloning and 3694 warnings
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/deprecated.rb')
-rw-r--r-- | lib/chef/deprecated.rb | 50 |
1 files changed, 21 insertions, 29 deletions
diff --git a/lib/chef/deprecated.rb b/lib/chef/deprecated.rb index 25eea5b5ec..461f65225b 100644 --- a/lib/chef/deprecated.rb +++ b/lib/chef/deprecated.rb @@ -66,6 +66,16 @@ class Chef end end + class InternalApi < Base + def id + 0 + end + + def target + "internal_api.html" + end + end + class JsonAutoInflate < Base def id 1 @@ -148,6 +158,16 @@ class Chef end end + class DnfPackageAllowDowngrade < Base + def id + 10 + end + + def target + "dnf_package_allow_downgrade.html" + end + end + class PropertyNameCollision < Base def id 11 @@ -198,35 +218,7 @@ class Chef end end - class ResourceCloning < Base - def id - 3694 - end - - def target - "resource_cloning.html" - end - end - - class InternalApi < Base - def id - 0 - end - - def target - "internal_api.html" - end - end - - class DnfPackageAllowDowngrade < Base - def id - 10 - end - - def target - "dnf_package_allow_downgrade.html" - end - end + # id 3694 was deleted class Generic < Base def url |