Method: Pipeline::Tracker#initialize

Defined in:
lib/pipeline/tracker.rb

#initialize(options) ⇒ Tracker

Pass in the options. Let the Tracker be the one thing that gets passed around with options and collecting output.



12
13
14
15
16
17
# File 'lib/pipeline/tracker.rb', line 12

def initialize options
  @options = options
  @warnings = []
  @errors = []
  @findings = []
end