class Guard::SimpleInteractor


input from standard input.
Simple interactor that that reads user

def read_line


Read a line from stdin with Readline.
def read_line
  while line = $stdin.gets
    process_input(line.gsub(/^\W*/, '').chomp)
  end
end