-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathsort.rb
More file actions
32 lines (26 loc) · 890 Bytes
/
sort.rb
File metadata and controls
32 lines (26 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true
#
# sort.rb
# 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.
#
module Puppet::Parser::Functions
newfunction(:sort, type: :rvalue, doc: <<-DOC
@summary
Sorts strings and arrays lexically.
@return
sorted string or array
Note that from Puppet 6.0.0 the same function in Puppet will be used instead of this.
DOC
) do |arguments|
if arguments.size != 1
raise(Puppet::ParseError, "sort(): Wrong number of arguments given #{arguments.size} for 1")
end
value = arguments[0]
if value.is_a?(Array)
value.sort
elsif value.is_a?(String)
value.split('').sort.join('')
end
end
end
# vim: set ts=2 sw=2 et :