Sha256: 6b6cf5fa6cb035b8035185d5ac028757f0b369c8284fa330a1b9d2ad51219806
Contents?: true
Size: 305 Bytes
Versions: 19
Compression:
Stored size: 305 Bytes
Contents
module ProconBypassMan module Background class JobPerformer def initialize(klass: , args: ) @klass = klass @args = args end def perform @klass.perform(*@args) rescue => e ProconBypassMan::ReportErrorJob.perform(e) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems