Initialize Analyse-Console

This commit is contained in:
Denis Knauf 2010-04-03 20:52:57 +02:00
parent 338daed210
commit 7aa766163a
2 changed files with 61 additions and 0 deletions

12
bin/logansh Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env ruby
require 'logan/analyse'
require 'active_support'
require 'irb'
$logan = LogAn::Analyse.new 'logs'
begin
IRB.start __FILE__
ensure
$logan.close
end