blob: b8376d1e865c61bd13efc3d32cd9b8f952a261a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# delete.rb
#
# TODO(Krzysztof Wilczynski): We need to add support for regular expression ...
# TODO(Krzysztof Wilczynski): Support for strings and hashes too ...
module Puppet::Parser::Functions
newfunction(:delete, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :
|