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.8.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.7.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.6.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.6.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.5.3 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.5.2 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.5.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.5.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.5.0.rc1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.4.1 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.4.0 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.2.4 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.2.3 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.2.2 lib/mcollective/aggregate/result/collection_result.rb
mcollective-client-2.2.1 lib/mcollective/aggregate/result/collection_result.rb