aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/array_del.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-10-08 20:07:53 +0200
committermh <mh@immerda.ch>2011-10-08 20:07:53 +0200
commite90839b24871f9cfd2166a116e45de5f27fe9e50 (patch)
treef73ee8f5e5b0b9113b5d7b94121a9ead8be7a84b /lib/puppet/parser/functions/array_del.rb
parent2352be71bf3fe16ccfec10dff48a78aeae64d834 (diff)
downloadpuppet-common-e90839b24871f9cfd2166a116e45de5f27fe9e50.tar.gz
puppet-common-e90839b24871f9cfd2166a116e45de5f27fe9e50.tar.bz2
remove a couple of functions that can now be found in the puppetlabs stdlib
Diffstat (limited to 'lib/puppet/parser/functions/array_del.rb')
-rw-r--r--lib/puppet/parser/functions/array_del.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/puppet/parser/functions/array_del.rb b/lib/puppet/parser/functions/array_del.rb
deleted file mode 100644
index e604916..0000000
--- a/lib/puppet/parser/functions/array_del.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-Puppet::Parser::Functions::newfunction(
- :array_del,
- :type => :rvalue,
- :doc => "Deletes items from an array
-
- Example: array_del(['a','b'],'b') -> ['a']"
-) do |args|
- raise Puppet::ParseError, 'array_del() needs two arguments' if args.length != 2
- (res=args[0].dup).to_a.delete(args[1])
- res
-end