Kill redundant YARD docs

This commit is contained in:
Markus Schirp 2014-06-15 19:27:57 +00:00
parent bdb1d86ea4
commit 5fdaf9de15
16 changed files with 25 additions and 116 deletions

View file

@ -31,13 +31,9 @@ module Mutant
private private
# Test if method is skipped # Test if method should be skipped
# #
# @return [true] # @return [Boolean]
# true and print warning if location must be filtered
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -42,11 +42,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# if node matches method
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -26,11 +26,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# if node matches method
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -42,11 +38,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# if node matches source line
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -60,11 +52,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# if node name matches
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -76,11 +64,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# when receiver matches
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -105,11 +89,7 @@ module Mutant
# #
# @param [Parser::AST::Node] node # @param [Parser::AST::Node] node
# #
# @return [true] # @return [Boolean]
# if node name matches unqualified scope name
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -22,11 +22,7 @@ module Mutant
# #
# @param [Killer] killer # @param [Killer] killer
# #
# @return [true] # @return [Boolean]
# if killer is successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -10,11 +10,7 @@ module Mutant
# #
# @param [Killer] killer # @param [Killer] killer
# #
# @return [true] # @return [Boolean]
# if killer killed mutation
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -73,10 +73,7 @@ module Mutant
# #
# @param [Object] object # @param [Object] object
# #
# @return [true] # @return [Boolean]
# if generated object is different
#
# @return [false]
# #
# @api private # @api private
# #

View file

@ -37,11 +37,7 @@ module Mutant
# Test if argument mutation is skipped # Test if argument mutation is skipped
# #
# @return [true] # @return [Boolean]
# if argument should not get mutated
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -30,11 +30,7 @@ module Mutant
# #
# @param [Object] generated # @param [Object] generated
# #
# @return [true] # @return [Boolean]
# if object is new
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -83,11 +83,7 @@ module Mutant
# Test if runner was successful # Test if runner was successful
# #
# @return [true] # @return [Boolean]
# if runner is successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -95,13 +91,9 @@ module Mutant
object.success? object.success?
end end
# Test for colored output # Test if output can be colored
# #
# @return [true] # @return [Boolean]
# if output is colored
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -127,11 +119,7 @@ module Mutant
# Test for output to tty # Test for output to tty
# #
# @return [true] # @return [Boolean]
# if output is a tty
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -91,11 +91,7 @@ module Mutant
# Test if runner should stop # Test if runner should stop
# #
# @return [true] # @return [Boolean]
# if runner should stop
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #
@ -115,11 +111,7 @@ module Mutant
# Test if runner is successful # Test if runner is successful
# #
# @return [true] # @return [Boolean]
# if successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -43,11 +43,7 @@ module Mutant
# Test if run was successful # Test if run was successful
# #
# @return [true] # @return [Boolean]
# if run was successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -40,11 +40,7 @@ module Mutant
# Test if mutation was handeled successfully # Test if mutation was handeled successfully
# #
# @return [true] # @return [Boolean]
# if successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -49,11 +49,7 @@ module Mutant
# Test if subject was processed successful # Test if subject was processed successful
# #
# @return [true] # @return [Boolean]
# if successful
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -5,11 +5,7 @@ module Mutant
# Test if method is public # Test if method is public
# #
# @return [true] # @return [Boolean]
# if method is public
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -9,11 +9,7 @@ module Mutant
# Test if method is public # Test if method is public
# #
# @return [true] # @return [Boolean]
# if method is public
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #

View file

@ -9,11 +9,7 @@ module Mutant
# Test if method is public # Test if method is public
# #
# @return [true] # @return [Boolean]
# if method is public
#
# @return [false]
# otherwise
# #
# @api private # @api private
# #