class Tollgate::Reporter::Records

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/tollgate/reporter/records.rb, line 6
def initialize
  super([])
end

Public Instance Methods

to_a() click to toggle source
# File lib/tollgate/reporter/records.rb, line 10
def to_a
  map { |record| [record.command, record.status] }
end