]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/edit_file.rb
Reduce pollution of the Chef namespace
[chef.git] / cookbooks / chef / libraries / edit_file.rb
index bfbec455cebc82d00acc90725b70b627c9e3f36a..f7c23178c3928a166886990206990b4de33ad6d6 100644 (file)
@@ -1,4 +1,4 @@
-class Chef
+module OpenStreetMap
   module Mixin
     module EditFile
       def edit_file(file, &_block)
@@ -10,8 +10,6 @@ class Chef
       end
     end
   end
-
-  class Recipe
-    include Chef::Mixin::EditFile
-  end
 end
+
+Chef::Recipe.include(OpenStreetMap::Mixin::EditFile)