Module: Evilution::Feedback::Detector Private

Defined in:
lib/evilution/feedback/detector.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Class Method Details

.friction?(summary) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


8
9
10
11
12
13
14
# File 'lib/evilution/feedback/detector.rb', line 8

def friction?(summary)
  return false if summary.nil?

  summary.errors.positive? ||
    summary.unparseable.positive? ||
    summary.unresolved.positive?
end