Sha256: 364fb789963bcee9bfb9063ddd0f4ff3c750bc055d5de0c4801a35793e66d47a
Contents?: true
Size: 1.08 KB
Versions: 4
Compression:
Stored size: 1.08 KB
Contents
# # Gems # # gems must load explicitly any gem declared in gemspec # @see https://github.com/bundler/bundler/issues/2018#issuecomment-6819359 # # require 'metasploit/concern' require 'metasploit_data_models' require 'metasploit/model' require 'zip' # # Project # require 'metasploit/credential/engine' # Shared namespace for metasploit gems; used in {https://github.com/rapid7/metasploit-credential metasploit-credential}, # {https://github.com/rapid7/metasploit-framework metasploit-framework}, and # {https://github.com/rapid7/metasploit-model metasploit-model} module Metasploit # The namespace for this gem. module Credential extend ActiveSupport::Autoload autoload :Creation autoload :EntityRelationshipDiagram autoload :Exporter autoload :Importer autoload :Migrator autoload :Origin autoload :Text # The prefix for all `ActiveRecord::Base#table_name`s for `ActiveRecord::Base` subclasses under this namespace. # # @return [String] `'metasploit_credential_'` def self.table_name_prefix 'metasploit_credential_' end end end
Version data entries
4 entries across 4 versions & 1 rubygems