Module: Satorix::CI::Test::BareBones

Extended by:
BareBones
Included in:
BareBones
Defined in:
lib/rails/generators/templates/custom_ci_job/satorix/CI/test/bare_bones.rb

Overview

This is the simplest possible implementation of a custom job.

Instance Method Summary collapse

Instance Method Details

#goObject

go() is the method that will be called during the CI run. You can add your own logic to do whatever you want.



13
14
15
16
17
# File 'lib/rails/generators/templates/custom_ci_job/satorix/CI/test/bare_bones.rb', line 13

def go
  # Uncomment the line below if you want to execute in the context of the app's buildpack.
  # Satorix::CI::Test::Shared::BuildpackManager.go
  puts "\n\nRunning BareBones#go..."
end