Sha256: f9af746e7417d5518d01f50d8b466b16e1bba29720c32ee93e448dfc50540fab
Contents?: true
Size: 378 Bytes
Versions: 9
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true require 'hako/scripts' module Hako class Script def initialize(app, options, dry_run:) @app = app @dry_run = dry_run configure(options) end def configure(_options) end def before_deploy(_containers) end def after_deploy(_containers) end def oneshot_started(_scheduler) end end end
Version data entries
9 entries across 9 versions & 1 rubygems