Module: LTools
- Defined in:
- lib/l-tools.rb,
lib/version.rb,
lib/core/opts.rb,
lib/core/tool.rb,
lib/tools/nmap.rb,
lib/tools/tshark.rb
Defined Under Namespace
Classes: Nmap, Tool, Tshark
Constant Summary
collapse
- VERSION =
"0.1.2"
Class Attribute Summary collapse
Class Method Summary
collapse
Class Attribute Details
.verbose ⇒ Object
Returns the value of attribute verbose.
13
14
15
|
# File 'lib/l-tools.rb', line 13
def verbose
@verbose
end
|
Class Method Details
15
16
17
|
# File 'lib/l-tools.rb', line 15
def add_tool(tool)
@tools << tool
end
|
.check_all? ⇒ Boolean
19
20
21
22
23
|
# File 'lib/l-tools.rb', line 19
def check_all?
@tools.map do |child_class|
child_class.check?
end
end
|