source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/is_hash.rb@ 30960

Last change on this file since 30960 was 30960, checked in by davidb, 7 years ago

Switch to using Puppet to provision machine. Strongly based on files developed for spark-hdfs cluster

File size: 448 bytes
Line 
1#
2# is_hash.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:is_hash, :type => :rvalue, :doc => <<-EOS
7Returns true if the variable passed to this function is a hash.
8 EOS
9 ) do |arguments|
10
11 raise(Puppet::ParseError, "is_hash(): Wrong number of arguments " +
12 "given (#{arguments.size} for 1)") if arguments.size != 1
13
14 type = arguments[0]
15
16 result = type.is_a?(Hash)
17
18 return result
19 end
20end
21
22# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.