Kill redundant YARD docs
This commit is contained in:
parent
bdb1d86ea4
commit
5fdaf9de15
16 changed files with 25 additions and 116 deletions
|
@ -31,13 +31,9 @@ module Mutant
|
|||
|
||||
private
|
||||
|
||||
# Test if method is skipped
|
||||
# Test if method should be skipped
|
||||
#
|
||||
# @return [true]
|
||||
# true and print warning if location must be filtered
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -42,11 +42,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# if node matches method
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -26,11 +26,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# if node matches method
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -42,11 +38,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# if node matches source line
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -60,11 +52,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# if node name matches
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -76,11 +64,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# when receiver matches
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -105,11 +89,7 @@ module Mutant
|
|||
#
|
||||
# @param [Parser::AST::Node] node
|
||||
#
|
||||
# @return [true]
|
||||
# if node name matches unqualified scope name
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -22,11 +22,7 @@ module Mutant
|
|||
#
|
||||
# @param [Killer] killer
|
||||
#
|
||||
# @return [true]
|
||||
# if killer is successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -10,11 +10,7 @@ module Mutant
|
|||
#
|
||||
# @param [Killer] killer
|
||||
#
|
||||
# @return [true]
|
||||
# if killer killed mutation
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -73,10 +73,7 @@ module Mutant
|
|||
#
|
||||
# @param [Object] object
|
||||
#
|
||||
# @return [true]
|
||||
# if generated object is different
|
||||
#
|
||||
# @return [false]
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -37,11 +37,7 @@ module Mutant
|
|||
|
||||
# Test if argument mutation is skipped
|
||||
#
|
||||
# @return [true]
|
||||
# if argument should not get mutated
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -30,11 +30,7 @@ module Mutant
|
|||
#
|
||||
# @param [Object] generated
|
||||
#
|
||||
# @return [true]
|
||||
# if object is new
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -83,11 +83,7 @@ module Mutant
|
|||
|
||||
# Test if runner was successful
|
||||
#
|
||||
# @return [true]
|
||||
# if runner is successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -95,13 +91,9 @@ module Mutant
|
|||
object.success?
|
||||
end
|
||||
|
||||
# Test for colored output
|
||||
# Test if output can be colored
|
||||
#
|
||||
# @return [true]
|
||||
# if output is colored
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -127,11 +119,7 @@ module Mutant
|
|||
|
||||
# Test for output to tty
|
||||
#
|
||||
# @return [true]
|
||||
# if output is a tty
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -91,11 +91,7 @@ module Mutant
|
|||
|
||||
# Test if runner should stop
|
||||
#
|
||||
# @return [true]
|
||||
# if runner should stop
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
@ -115,11 +111,7 @@ module Mutant
|
|||
|
||||
# Test if runner is successful
|
||||
#
|
||||
# @return [true]
|
||||
# if successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -43,11 +43,7 @@ module Mutant
|
|||
|
||||
# Test if run was successful
|
||||
#
|
||||
# @return [true]
|
||||
# if run was successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -40,11 +40,7 @@ module Mutant
|
|||
|
||||
# Test if mutation was handeled successfully
|
||||
#
|
||||
# @return [true]
|
||||
# if successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -49,11 +49,7 @@ module Mutant
|
|||
|
||||
# Test if subject was processed successful
|
||||
#
|
||||
# @return [true]
|
||||
# if successful
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -5,11 +5,7 @@ module Mutant
|
|||
|
||||
# Test if method is public
|
||||
#
|
||||
# @return [true]
|
||||
# if method is public
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -9,11 +9,7 @@ module Mutant
|
|||
|
||||
# Test if method is public
|
||||
#
|
||||
# @return [true]
|
||||
# if method is public
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
|
@ -9,11 +9,7 @@ module Mutant
|
|||
|
||||
# Test if method is public
|
||||
#
|
||||
# @return [true]
|
||||
# if method is public
|
||||
#
|
||||
# @return [false]
|
||||
# otherwise
|
||||
# @return [Boolean]
|
||||
#
|
||||
# @api private
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue