class Tanj::CLI

Public Instance Methods

run(args) click to toggle source
# File lib/tanj/cli.rb, line 3
def run(args)
  frontend = Tanj::Frontend.new
  while line = gets
    frontend.receive(line)
  end
end