Sha256: b640e725d94979e82ce41e64ffaa811855f027c208a08043b0eafb8a804cc738
Contents?: true
Size: 318 Bytes
Versions: 4
Compression:
Stored size: 318 Bytes
Contents
# frozen_string_literal: true require "releasetool/util" module Releasetool class BaseHooks # @param config [Releasetool::Configuration] def initialize(config) @config = config end def after_prepare(version) # noop end def after_commit(version) # noop end end end
Version data entries
4 entries across 4 versions & 1 rubygems