Class: Tanj::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/tanj/cli.rb

Instance Method Summary collapse

Instance Method Details

#run(args) ⇒ Object



3
4
5
6
7
8
# File 'lib/tanj/cli.rb', line 3

def run(args)
  frontend = Tanj::Frontend.new
  while line = gets
    frontend.receive(line)
  end
end