Sha256: 211be84ece37792ae8c714e3cfe18fb11abf113307d2cf491c420d2b1dbd4b0e

Contents?: true

Size: 290 Bytes

Versions: 3

Compression:

Stored size: 290 Bytes

Contents

# frozen_string_literal: true

class MultiProcess::Process
  # Provides functionality to wrap command in with bundle
  # execute.
  #
  module BundleExec
    def initialize(*args)
      opts = args.last.is_a?(Hash) ? args.pop : {}
      super %w[bundle exec] + args, opts
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
multi_process-1.3.0 lib/multi_process/process/bundle_exec.rb
multi_process-1.2.1 lib/multi_process/process/bundle_exec.rb
multi_process-1.2.0 lib/multi_process/process/bundle_exec.rb