12 lines
166 B
Ruby
12 lines
166 B
Ruby
#
|
|
# sort.rb
|
|
#
|
|
|
|
module Puppet::Parser::Functions
|
|
newfunction(:sort, :type => :rvalue, :doc => <<-EOS
|
|
EOS
|
|
) do |arguments|
|
|
end
|
|
end
|
|
|
|
# vim: set ts=2 sw=2 et :
|