URI: 
       warvox.rb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
  HTML git clone git://jay.scot/warvox
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       warvox.rb (468B)
       ---
            1 ##
            2 #  top level include file for warvox libaries
            3 ##
            4 
            5 # Load components
            6 require 'warvox/config'
            7 require 'warvox/jobs'
            8 require 'warvox/phone'
            9 require 'warvox/audio'
           10 require 'logger'
           11 
           12 # Global configuration
           13 module WarVOX
           14   VERSION = '2.0.0-dev'
           15   Base = File.expand_path(File.join(File.dirname(__FILE__), '..'))
           16   Conf = File.expand_path(File.join(Base, 'config', 'warvox.conf'))
           17   Log  = Logger.new( WarVOX::Config.log_file )
           18   Log.level = WarVOX::Config.log_level
           19 
           20 end