class Hydra::Stdio

Read and write via stdout and stdin.

Public Class Methods

new() click to toggle source

Initialize new Stdio

# File lib/hydra/stdio.rb, line 8
def initialize()
  @reader = $stdin
  @writer = $stdout
  @reader.sync = true
  @writer.sync = true
end