diff options
author | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-27 23:26:41 +0100 |
---|---|---|
committer | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-27 23:26:41 +0100 |
commit | 79191fc12751405cebaa56e98d56ae159508743f (patch) | |
tree | fe9ccd03abe47e81f596bc405ad5faeef8f829ce | |
parent | cd4904b9d92d2cec87ef9332a64559fa16298535 (diff) | |
download | puppet-stdlib-79191fc12751405cebaa56e98d56ae159508743f.tar.gz puppet-stdlib-79191fc12751405cebaa56e98d56ae159508743f.tar.bz2 |
Changing name of the function from include to includes as it clashes with
a core function from Puppet::Parser. I had no idea that you can over-write
some of the that way. Oops.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r-- | includes.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/includes.rb b/includes.rb new file mode 100644 index 0000000..6207bf7 --- /dev/null +++ b/includes.rb @@ -0,0 +1,32 @@ +# +# include.rb +# + +# TODO(Krzysztof Wilczynski): We need to add support for regular expression ... + +module Puppet::Parser::Functions + newfunction(:includes, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "includes(): Wrong number of arguments " + + "given (#{arguments.size} for 2)") if arguments.size < 2 + + array = arguments[0] + + if not array.is_a?(Array) + raise(Puppet::ParseError, 'includes(): Requires an array to work with') + end + + item = arguments[1] + + raise(Puppet::ParseError, 'includes(): You must provide item ' + + 'to search for within given array') if item.empty? + + result = array.include?(item) + + return result + end +end + +# vim: set ts=2 sw=2 et : |