source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/is_string.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 8 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

File size: 866 bytes
Line 
1#
2# is_string.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:is_string, :type => :rvalue, :doc => <<-EOS
7Returns true if the variable passed to this function is a string.
8 EOS
9 ) do |arguments|
10
11 function_deprecation([:is_string, 'This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::String. There is further documentation for validate_legacy function in the README.'])
12
13 raise(Puppet::ParseError, "is_string(): Wrong number of arguments " +
14 "given (#{arguments.size} for 1)") if arguments.size < 1
15
16 type = arguments[0]
17
18 # when called through the v4 API shim, undef gets translated to nil
19 result = type.is_a?(String) || type.nil?
20
21 if result and (type == type.to_f.to_s or type == type.to_i.to_s) then
22 return false
23 end
24
25 return result
26 end
27end
28
29# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.