module SimplePerf::CLI::Shared
Public Class Methods
pretty_print(output)
click to toggle source
# File lib/simple_perf/cli/shared.rb, line 5 def self.pretty_print(output) output.gsub!(/\r\n?/, "\n") output.each_line { |line| puts line.split(" : ")[1] unless line.to_s.include? "tar: Ignoring unknown extended header keyword" } end