class TeeLogger::Filter::FilterBase

Any filter implementations must derive from this

Attributes

run_data[RW]

Initialize with filter words

Public Class Methods

new(run_data) click to toggle source
# File lib/teelogger/filter.rb, line 207
def initialize(run_data)
  @run_data = run_data
end

Public Instance Methods

process(*args) click to toggle source

Base filter leaves the argument untouched.

# File lib/teelogger/filter.rb, line 213
def process(*args)
  args
end