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
-
#go ⇒ Object
go() is the method that will be called during the CI run.
Instance Method Details
#go ⇒ Object
go() is the method that will be called during the CI run. You can add your own logic to do whatever you want.
12 13 14 |
# File 'lib/rails/generators/templates/custom_ci_job/satorix/CI/test/bare_bones.rb', line 12 def go puts "\n\nRunning BareBones#go..." end |