Sha256: 04f68d272a6b69f90047e6618cc475b098ac65becd92db878cb5ba7635c0e085

Contents?: true

Size: 424 Bytes

Versions: 55

Compression:

Stored size: 424 Bytes

Contents

module MCollective
  class Aggregate
    module Result
      class CollectionResult<Base
        def to_s
          return "" if @result[:value].keys.include?(nil)

          result = StringIO.new

          @result[:value].sort{|x,y| x[1] <=> y[1]}.reverse.each do |value|
            result.puts @aggregate_format % [value[0], value[1]]
          end

          result.string.chomp
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
mcollective-client-2.11.3 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.11.2 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.11.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.11.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.10.4 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.10.3 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.10.2 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.10.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.10.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.7 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.5 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.8 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.6 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.9.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.9.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.9 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.4 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.3 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.2 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.8.1 lib/mcollective/aggregate/result/collection_result.rb