2010-03-01 01:28:13 +01:00
|
|
|
#!/usr/bin/ruby
|
|
|
|
|
2010-03-29 11:50:59 +02:00
|
|
|
require 'logan'
|
|
|
|
require 'logan/inc'
|
2010-03-20 23:33:14 +01:00
|
|
|
|
2010-03-29 11:50:59 +02:00
|
|
|
opts = {}
|
|
|
|
opts[:server] = if ARGV[1]
|
|
|
|
ARGV
|
|
|
|
elsif ARGV[0]
|
|
|
|
['localhost', ARGV[1]]
|
|
|
|
else %w[localhost 1087]
|
2010-03-23 11:06:05 +01:00
|
|
|
end
|
2010-03-29 11:50:59 +02:00
|
|
|
opts[:server][1] = opts[:server][1].to_i
|
2010-03-23 11:06:05 +01:00
|
|
|
|
2010-03-29 11:50:59 +02:00
|
|
|
LogAn::Inc::Main.main *opts
|