Add missing YARD documentation
These comments were the only missing docs flagged by yardstick
This commit is contained in:
parent
eeb05a7188
commit
d069fc164f
2 changed files with 5 additions and 0 deletions
|
@ -79,6 +79,8 @@ module Mutant
|
|||
# Define private method
|
||||
#
|
||||
# @param [Symbol] name
|
||||
#
|
||||
# @return [undefined]
|
||||
def define_private_method(name, &block)
|
||||
define_method(name, &block)
|
||||
private(name)
|
||||
|
|
|
@ -13,6 +13,9 @@ module Mutant
|
|||
end
|
||||
end
|
||||
|
||||
# Minimum reporter delay
|
||||
#
|
||||
# @return [Float]
|
||||
def delay
|
||||
reporters.map(&:delay).min
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue