Sha256: 4ecc518c7e3b599260e5035fc12ea3de66ff2c124806ae1605fbc5f4a7638ebd
Contents?: true
Size: 568 Bytes
Versions: 61
Compression:
Stored size: 568 Bytes
Contents
# frozen_string_literal: true module SidekiqUniqueJobs # # Class UpdateVersion sets the right version in redis # # @author Mikael Henriksson <mikael@mhenrixon.com> # class UpdateVersion # # Sets the right versions in redis # # @note the version isn't used yet but will be for automatic upgrades # # @return [true] when version changed # def self.call Script::Caller.call_script( :update_version, keys: [LIVE_VERSION, DEAD_VERSION], argv: [SidekiqUniqueJobs.version], ) end end end
Version data entries
61 entries across 61 versions & 1 rubygems