15 lines
320 B
Ruby
15 lines
320 B
Ruby
#
|
|
# 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 :
|