blob: 029cddac9aedb684567578a58cd77f08512fc8cb (
plain)
1
2
3
4
5
6
7
8
9
|
class Chef
# This module exists to hide conflicting constant names from the DSL.
# Hopefully we'll have a better/prettier/more sustainable solution in the
# future, but for now this will fix a regression introduced in Chef 0.10.10
# (conflict with the Win32 namespace)
module ReservedNames
end
end
|