Files
metasploit-gs/lib/rex/parser.rb
T
Joshua Drake 05f107f466 Fixes #4371, Converts many uses of require to autoload
git-svn-id: file:///home/svn/framework3/trunk@12554 4d416f70-5f16-0410-b530-b9f4589650da
2011-05-06 18:47:10 +00:00

24 lines
729 B
Ruby

##
# $Id$
#
# This file maps parsers for autoload
##
module Rex
module Parser
# General parsers
autoload :Arguments, 'rex/parser/arguments'
autoload :Ini, 'rex/parser/ini'
# Data import parsers
autoload :NmapXMLStreamParser, 'rex/parser/nmap_xml'
autoload :NexposeXMLStreamParser, 'rex/parser/nexpose_xml'
autoload :RetinaXMLStreamParser, 'rex/parser/retina_xml'
autoload :NetSparkerXMLStreamParser, 'rex/parser/netsparker_xml'
autoload :NessusXMLStreamParser, 'rex/parser/nessus_xml'
autoload :IP360XMLStreamParser, 'rex/parser/ip360_xml'
autoload :IP360ASPLXMLStreamParser, 'rex/parser/ip360_aspl_xml'
autoload :AppleBackupManifestDB, 'rex/parser/apple_backup_manifestdb'
end
end