Sha256: 36c939f51cf32955246102a76c9096ef86831a433e063cf23aa5297308b83e1e

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

#!/usr/bin/env ruby

# WebROaR - Ruby Application Server - http://webroar.in/
# Copyright (C) 2009  Goonj LLC
#
# This file is part of WebROaR.
#
# WebROaR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# WebROaR is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with WebROaR.  If not, see <http://www.gnu.org/licenses/>.

require 'rubygems'
$: << "." if not $:.include? "."
require File.join(File.dirname(__FILE__), '..', 'lib', 'constant.rb')

$LOAD_PATH.unshift("#{WEBROAR_LIB_DIR}")
$LOAD_PATH.unshift("#{ANALYZER_DIR}")

require 'db_connect'
require 'wlogger'
require 'process_helper'
require 'user_defined_exception'
require 'with_exception_handling'
require 'message_reader'
require 'message_analyzer'
require 'resources_analyzer'
require 'webroar_analyzer'

Webroar::Analyzer::ScriptRunner.run

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
webroar-0.7.0 bin/webroar-analyzer
webroar-0.6.1 bin/webroar-analyzer