Sha256: 80661935aefa0818971d2901a8f46f9cfb5cb0c4bc6868bd4b9b653c0a4979ee

Contents?: true

Size: 287 Bytes

Versions: 3

Compression:

Stored size: 287 Bytes

Contents

module Flows
  module Plugin
    module Profiler
      class Report
        # Raw report. Preserves events as is.
        class Raw < Report
          # @see Report#to_s
          def to_s
            raw_data.map(&:to_s).join("\n")
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flows-0.6.0 lib/flows/plugin/profiler/report/raw.rb
flows-0.5.1 lib/flows/plugin/profiler/report/raw.rb
flows-0.5.0 lib/flows/plugin/profiler/report/raw.rb