source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/capitalize.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: 883 bytes
Line 
1#
2# capitalize.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:capitalize, :type => :rvalue, :doc => <<-EOS
7 Capitalizes the first letter of a string or array of strings.
8 Requires either a single string or an array as an input.
9 EOS
10 ) do |arguments|
11
12 raise(Puppet::ParseError, "capitalize(): Wrong number of arguments " +
13 "given (#{arguments.size} for 1)") if arguments.size < 1
14
15 value = arguments[0]
16
17 unless value.is_a?(Array) || value.is_a?(String)
18 raise(Puppet::ParseError, 'capitalize(): Requires either ' +
19 'array or string to work with')
20 end
21
22 if value.is_a?(Array)
23 # Numbers in Puppet are often string-encoded which is troublesome ...
24 result = value.collect { |i| i.is_a?(String) ? i.capitalize : i }
25 else
26 result = value.capitalize
27 end
28
29 return result
30 end
31end
32
33# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.