Sha256: 3a4bd5498476da33538d825520c9b44e35741b423a6c168a42c78465b519e6dd

Contents?: true

Size: 264 Bytes

Versions: 4

Compression:

Stored size: 264 Bytes

Contents

class MultiProcess::Process

  # Provides functionality to wrap command in with bundle
  # execute.
  #
  module BundleExec

    def initialize(*args)
      opts = Hash === args.last ? args.pop : Hash.new
      super %w(bundle exec) + args, opts
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
multi_process-0.4.0 lib/multi_process/process/bundle_exec.rb
multi_process-0.3.0 lib/multi_process/process/bundle_exec.rb
multi_process-0.2.0 lib/multi_process/process/bundle_exec.rb
multi_process-0.1.0 lib/multi_process/process/bundle_exec.rb