Path: blob/master/lib/metasploit/framework/parsed_options.rb
19849 views
#1# Gems2#34require 'active_support/dependencies/autoload'56# @note Must use the nested declaration of the7# {Metasploit::Framework::ParsedOptions} namespace because commands, which8# use parsed options, need to be able to be required directly without any9# other part of metasploit-framework besides config/boot so that the10# commands can parse arguments, setup RAILS_ENV, and load11# config/application.rb correctly.12module Metasploit13module Framework14# Namespace for parsed options for {Metasploit::Framework::Command15# commands}. The names of `Class`es in this namespace correspond to the16# name of the `Class` in the {Metasploit::Framework::Command} namespace17# for which this namespace's `Class` parses options.18module ParsedOptions19extend ActiveSupport::Autoload2021autoload :Base22autoload :Console23end24end25end26272829