class Treyja::Command::Dump

Attributes

reader[R]

Public Class Methods

new(reader) click to toggle source
# File lib/treyja/command/dump.rb, line 6
def initialize reader
  @reader = reader
end

Public Instance Methods

run() click to toggle source
# File lib/treyja/command/dump.rb, line 10
def run
  reader.each do |ts|
    p ts
    STDOUT.flush
  end
end