Class: Mutant::WarningFilter

Inherits:
Object
  • Object
show all
Defined in:
lib/mutant/warning_filter.rb

Overview

Stream filter for warnings

Constant Summary collapse

WARNING_PATTERN =
/\A(?:.+):(?:\d+): warning: (?:.+)\n\z/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target) ⇒ undefined

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.

Initialize object

Parameters:



18
19
20
21
# File 'lib/mutant/warning_filter.rb', line 18

def initialize(target)
  @target   = target
  @warnings = []
end

Instance Attribute Details

#warningsArray<String> (readonly)

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.

Return filtered warnings

Returns:

  • (Array<String>)


29
30
31
# File 'lib/mutant/warning_filter.rb', line 29

def warnings
  @warnings
end

Class Method Details

.useArray<String>

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.

Use warning filter during block execution

Returns:

  • (Array<String>)


66
67
68
69
70
71
72
73
# File 'lib/mutant/warning_filter.rb', line 66

def self.use
  original = $stderr
  $stderr = filter = new(original)
  yield
  filter.warnings
ensure
  $stderr = original
end

Instance Method Details

#write(message) ⇒ self

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.

Write message to target filtering warnings

Parameters:

  • message (String)

Returns:

  • (self)


50
51
52
53
54
55
56
57
58
# File 'lib/mutant/warning_filter.rb', line 50

def write(message)
  if WARNING_PATTERN =~ message
    warnings << message
  else
    target.write(message)
  end

  self
end