Class: Dobby::VulnSource::AbstractVulnSource Abstract
- Inherits:
-
Object
- Object
- Dobby::VulnSource::AbstractVulnSource
- Includes:
- Strategy
- Defined in:
- lib/dobby/vuln_source/abstract_vuln_source.rb
Overview
Instance Attribute Summary
Attributes included from Strategy
Instance Method Summary collapse
-
#clean
Instruct a strategy to clean up after itself, removing any files it may have created.
-
#update ⇒ UpdateResponse
Retrieve a source database (if necessary) and parse it.
Methods included from Strategy
included, #initialize, #inspect, #log, #setup
Instance Method Details
#clean
This method returns an undefined value.
Instruct a strategy to clean up after itself, removing any files it may have created.
21 22 23 |
# File 'lib/dobby/vuln_source/abstract_vuln_source.rb', line 21 def clean raise NotImplementedError end |
#update ⇒ UpdateResponse
Retrieve a source database (if necessary) and parse it.
13 14 15 |
# File 'lib/dobby/vuln_source/abstract_vuln_source.rb', line 13 def update raise NotImplementedError end |