Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / camelcase.rb
1 #
2 #  camelcase.rb
3 #  Please note: This function is an implementation of a Ruby class and as such may not be entirely UTF8 compatible. To ensure compatibility please use this function with Ruby 2.4.0 or greater - https://bugs.ruby-lang.org/issues/10085.
4 #
5 module Puppet::Parser::Functions
6   newfunction(:camelcase, :type => :rvalue, :doc => <<-DOC
7     @summary
8       **Deprecated** Converts the case of a string or all strings in an array to camel case.
9
10     > *Note:*
11       **Deprecated** from Puppet 6.0.0, this function has been replaced with
12       a built-in [`camelcase`](https://puppet.com/docs/puppet/latest/function.html#camelcase)
13       function.
14
15     @return [String] The converted String, if it was a String that was given
16     @return [Array[String]] The converted Array, if it was a Array that was given
17   DOC
18              ) do |arguments|
19
20     raise(Puppet::ParseError, "camelcase(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
21
22     value = arguments[0]
23     klass = value.class
24
25     unless [Array, String].include?(klass)
26       raise(Puppet::ParseError, 'camelcase(): Requires either array or string to work with')
27     end
28
29     result = if value.is_a?(Array)
30                # Numbers in Puppet are often string-encoded which is troublesome ...
31                value.map { |i| i.is_a?(String) ? i.split('_').map { |e| e.capitalize }.join : i }
32              else
33                value.split('_').map { |e| e.capitalize }.join
34              end
35
36     return result
37   end
38 end
39
40 # vim: set ts=2 sw=2 et :