Sha256: be7e5ddd22dfcaf7ca52f210cc36073e631fa3d32b4bf6dbccd09bb8c8b6fe37
Contents?: true
Size: 1.04 KB
Versions: 22
Compression:
Stored size: 1.04 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 # # 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
22 entries across 22 versions & 1 rubygems