Module: Msf::Module::Author
- Included in:
- Msf::Module
- Defined in:
- lib/msf/core/module/author.rb
Instance Attribute Summary collapse
-
#author ⇒ Object
Returns the value of attribute author.
Instance Method Summary collapse
-
#author_to_s ⇒ Object
Return a comma separated list of author for this module.
-
#each_author(&block) ⇒ Object
Enumerate each author.
Instance Attribute Details
#author ⇒ Object
Returns the value of attribute author.
8 9 10 |
# File 'lib/msf/core/module/author.rb', line 8 def @author end |
Instance Method Details
#author_to_s ⇒ Object
Return a comma separated list of author for this module.
17 18 19 |
# File 'lib/msf/core/module/author.rb', line 17 def .collect { || .to_s }.join(", ") end |
#each_author(&block) ⇒ Object
Enumerate each author.
24 25 26 |
# File 'lib/msf/core/module/author.rb', line 24 def (&block) .each(&block) end |