From 872c7f3c42557787662bdd42a3d6f69051d09a88 Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Sat, 30 Apr 2011 02:50:38 +0100 Subject: Added body of the function flatten. Signed-off-by: Krzysztof Wilczynski --- flatten.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 flatten.rb diff --git a/flatten.rb b/flatten.rb new file mode 100644 index 0000000..6036f72 --- /dev/null +++ b/flatten.rb @@ -0,0 +1,25 @@ +# +# flatten.rb +# + +module Puppet::Parser::Functions + newfunction(:flatten, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "flatten(): Wrong number of arguments " + + "given (#{arguments.size} for 1)") if arguments.size < 1 + + array = arguments[0] + + unless array.is_a?(Array) + raise(Puppet::ParseError, 'flatten(): Requires array to work with') + end + + result = array.flatten + + return result + end +end + +# vim: set ts=2 sw=2 et : -- cgit v1.2.3