class NxtPipeline::Logger
Attributes
log[RW]
Public Class Methods
new()
click to toggle source
# File lib/nxt_pipeline/logger.rb, line 3 def initialize @log = {} end
Public Instance Methods
call(step)
click to toggle source
# File lib/nxt_pipeline/logger.rb, line 9 def call(step) log[step.to_s] = step.status end