Sha256: a9398821555a9f68910f7cb5504465cfe592ba72bf5469bf34491f342b897a7b
Contents?: true
Size: 185 Bytes
Versions: 5
Compression:
Stored size: 185 Bytes
Contents
# frozen_string_literal: true # :nocov: class CustomQueueJob include Sidekiq::Worker sidekiq_options queue: :customqueue def perform(one, two = "two") [one, two] end end
Version data entries
5 entries across 5 versions & 1 rubygems