summaryrefslogtreecommitdiffstats
path: root/lib/puppet/property/ordered_list.rb
blob: 7408b3019162509d82be4d0703e4831bb2bb5763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'puppet/property/list'

module Puppet
  class Property
    class OrderedList < List

      def add_should_with_current(should, current)
        if current.is_a?(Array)
          #tricky trick
          #Preserve all the current items in the list
          #but move them to the back of the line
          should = should + (current - should)
        end
        should
      end

      def dearrayify(array)
        array.join(delimiter)
      end
    end
  end
end