Sha256: 0afcf016a539e7dbf7bc745645c8b632005bd9a08f63c4c640d6a7b5e344ad23
Contents?: true
Size: 256 Bytes
Versions: 38
Compression:
Stored size: 256 Bytes
Contents
class CC::Service::Invocation class InvocationChain def initialize(&block) @invocation = block end def wrap(klass, *args) @invocation = klass.new(@invocation, *args) end def call @invocation.call end end end
Version data entries
38 entries across 38 versions & 1 rubygems