Module: MultiProcess::Process::BundleExec

Defined in:
lib/multi_process/process/bundle_exec.rb

Overview

Provides functionality to wrap command in with bundle execute.

Instance Method Summary collapse

Instance Method Details

#initialize(*args) ⇒ Object



8
9
10
11
# File 'lib/multi_process/process/bundle_exec.rb', line 8

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