summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/sort.rb
blob: 54a40185198652957f007eddc3c905c95b6fc749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# sort.rb
#

module Puppet::Parser::Functions
  newfunction(:sort, :type => :rvalue, :doc => <<-EOS
    EOS
  ) do |arguments|

    if (arguments.size != 1) then
      raise(Puppet::ParseError, "sort(): Wrong number of arguments "+
        "given #{arguments.size} for 1")
    end

    arguments[0].sort

  end
end

# vim: set ts=2 sw=2 et :