Sha256: 657a585b5d3383941708e548371097ae49a9fb810321fc6631db1ae7b9c94e13
Contents?: true
Size: 373 Bytes
Versions: 16
Compression:
Stored size: 373 Bytes
Contents
module Metaractor module RunWithContext # Grab context at run and set things up. def run(context = {}) _build_context context super() end def run!(context = {}) _build_context context super() end def _build_context(context = {}) @context = Interactor::Context.build(context) unless context.empty? end end end
Version data entries
16 entries across 16 versions & 1 rubygems