diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-03-15 15:09:45 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-03-15 15:09:45 -0700 |
commit | d32484b767e11d4da48fd1c185315fe08b25fdbe (patch) | |
tree | 95f33d862ff59b6704f506279ec72854fad956c7 /lib/chef/recipe.rb | |
parent | c1a389c2a8452e9b796aa1d34c4d9e51f4af30c7 (diff) | |
download | chef-d32484b767e11d4da48fd1c185315fe08b25fdbe.tar.gz |
lazy module inclusion into DSL moduleslcg/use-and-lazy-module-include
Chef::DSL::Recipe::FullDSL.send(:include, MyModule) will now patch all
its descendants that it has been included into (works the way actual
inheritance works now).
Diffstat (limited to 'lib/chef/recipe.rb')
-rw-r--r-- | lib/chef/recipe.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/chef/recipe.rb b/lib/chef/recipe.rb index 3a91781b2e..55b6fd7d52 100644 --- a/lib/chef/recipe.rb +++ b/lib/chef/recipe.rb @@ -114,6 +114,5 @@ class Chef run_context.node.tags.delete(tag) end end - end end |