class Fuselage::Step

Public Instance Methods

output() click to toggle source
# File lib/concourse-fuselage/step.rb, line 14
def output
  fail NotImplementedError
end
run() click to toggle source
# File lib/concourse-fuselage/step.rb, line 18
def run
  validated(output)
    .tap { |string| STDOUT.puts string }
    .tap { |string| STDERR.puts string if debugging? }
end