Files
beef/core/loader.rb
scotty.b.brown@gmail.com 35f62714b1 Moving nextgen from a branch to the trunk!!!
git-svn-id: https://beef.googlecode.com/svn/trunk@908 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
2011-04-20 07:54:56 +00:00

42 lines
707 B
Ruby

#
# Include here all the gems we are using
#
require 'rubygems'
require 'webrick'
require 'webrick/httpproxy'
require 'dm-core'
require 'dm-migrations'
require 'json'
require 'ansi'
require 'optparse'
require 'cgi'
require 'yaml'
require 'singleton'
require 'ipaddr'
require 'base64'
require 'xmlrpc/client'
require 'erubis'
require 'openssl'
require 'term/ansicolor'
# Include the filters
require 'core/filters'
# Include our patches for ruby and gems
require 'core/ruby'
# Include the API
require 'core/api'
# Include the settings
require 'core/settings'
# Include the core of BeEF
require 'core/core'
# Include the extensions
require 'core/extensions'
# Include the modules
require 'core/modules'