Path: blob/master/lib/metasploit/framework/command.rb
19758 views
#1# Gems2#34# have to be exact so minimum is loaded prior to parsing arguments which could5# influence loading.6require 'active_support/dependencies/autoload'78# @note Must use the nested declaration of the9# {Metasploit::Framework::Command} namespace because commands need to be able10# to be required directly without any other part of metasploit-framework11# besides config/boot so that the commands can parse arguments, setup12# RAILS_ENV, and load config/application.rb correctly.13module Metasploit14module Framework15module Command16# Namespace for commands for metasploit-framework. There are17# corresponding classes in the {Metasploit::Framework::ParsedOptions}18# namespace, which handle for parsing the options for each command.19extend ActiveSupport::Autoload2021autoload :Base22autoload :Console23end24end25end262728