diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2020-01-31 13:54:10 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2020-01-31 13:54:10 -0800 |
commit | 9ce4eb455526074cc88f398a8397e5d2a62443fa (patch) | |
tree | 2e4b38b643411065340068b2b6b8d34f69f46719 /lib/chef/node/attribute.rb | |
parent | 3023717497cb5540190c1977d578599437325330 (diff) | |
download | chef-9ce4eb455526074cc88f398a8397e5d2a62443fa.tar.gz |
Add chef-sugar virtualization helpers
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/node/attribute.rb')
-rw-r--r-- | lib/chef/node/attribute.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/node/attribute.rb b/lib/chef/node/attribute.rb index d872e53d9b..4ccf04af6a 100644 --- a/lib/chef/node/attribute.rb +++ b/lib/chef/node/attribute.rb @@ -1,7 +1,7 @@ #-- # Author:: Adam Jacob (<adam@chef.io>) # Author:: AJ Christensen (<aj@chef.io>) -# Copyright:: Copyright 2008-2019, Chef Software Inc. +# Copyright:: Copyright 2008-2020, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -453,6 +453,8 @@ class Chef merged_attributes.read(*path) end + alias :dig :read + def read!(*path) merged_attributes.read!(*path) end |