diff options
author | Tim Smith <tsmith@chef.io> | 2017-12-13 12:04:33 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-12-13 12:04:33 -0800 |
commit | 0d14959ebef1f7cd051e1621e9785555981d5500 (patch) | |
tree | e207f1c1e35b49910d41474742d02a646088da28 /lib/chef/resource/chef_gem.rb | |
parent | 8c923eee2f43bbd48ffc8f8137c369e5c3661a2b (diff) | |
download | chef-0d14959ebef1f7cd051e1621e9785555981d5500.tar.gz |
Add a few more comments to resources
I try to add them as I read through resources
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/chef_gem.rb')
-rw-r--r-- | lib/chef/resource/chef_gem.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/resource/chef_gem.rb b/lib/chef/resource/chef_gem.rb index 7025d74e58..3a2d90e852 100644 --- a/lib/chef/resource/chef_gem.rb +++ b/lib/chef/resource/chef_gem.rb @@ -30,6 +30,7 @@ class Chef } property :compile_time, [ true, false ], default: false, desired_state: false + # force the resource to compile time if the compile time property has been set def after_created if compile_time Array(action).each do |action| |