Sha256: f780432e1e160782b5e137a39771095fd8f82224e11a827adeb46e47fe7dad02
Contents?: true
Size: 379 Bytes
Versions: 15
Compression:
Stored size: 379 Bytes
Contents
module DispatchRider module Handlers class Base include NamedProcess extend InheritanceTracking def do_process(options) with_named_process(self.class.name) do process(options) end end def process(options) raise NotImplementedError, "Method 'process' not overridden in subclass!" end end end end
Version data entries
15 entries across 15 versions & 1 rubygems