Module: MetasploitDataModels
- Extended by:
- ActiveSupport::Autoload
- Defined in:
- lib/metasploit_data_models.rb,
lib/metasploit_data_models/version.rb
Overview
Core database models for metasploit-framework.
Defined Under Namespace
Modules: AutomaticExploitation, IPAddress, Match, Search, SerializedPrefs Classes: Base64Serializer, ChangeRequiredColumnsToNullFalse, Engine, ModuleRun
Constant Summary collapse
- VERSION =
VERSION is managed by GemRelease
'4.1.4.02'
Class Method Summary collapse
-
.root ⇒ Pathname
The root directory of
metasploit_data_models
gem in both development and gem installs. -
.version ⇒ String
returns the VERSION.
Class Method Details
.root ⇒ Pathname
The root directory of metasploit_data_models
gem in both development and gem installs.
46 47 48 49 50 51 52 53 54 |
# File 'lib/metasploit_data_models.rb', line 46 def self.root unless instance_variable_defined? :@root lib_pathname = Pathname.new(__FILE__).dirname @root = lib_pathname.parent end @root end |
.version ⇒ String
returns the VERSION
10 11 12 |
# File 'lib/metasploit_data_models/version.rb', line 10 def self.version VERSION end |