module AndSon::CallRunner::SummaryLine

Public Class Methods

new(line_attrs) click to toggle source
# File lib/and-son/call_runner.rb, line 128
def self.new(line_attrs)
  attr_keys = %w{time status host service params}
  attr_keys.map{ |k| "#{k}=#{line_attrs[k].inspect}" }.join(' ')
end