Sha256: b42240dfc88febbc54a832e5b89ef20de0176a144d9ff92c4e5f6c892c15ad69
Contents?: true
Size: 423 Bytes
Versions: 11
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true module Lino module Builders module Mixins module Executor def initialize(state) super @executor = state[:executor] || Lino.configuration.executor end def with_executor(executor) with(executor:) end private def state super.merge(executor: @executor) end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems