Module: Arachni::Plugins

Defined in:
lib/plugin/manager.rb

Overview

The namespace under which all plugins exist

Class Method Summary collapse

Class Method Details

.resetObject

Resets the namespace unloading all module classes



21
22
23
24
25
26
# File 'lib/plugin/manager.rb', line 21

def self.reset
    constants.each {
        |const|
        remove_const( const )
    }
end