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



6
7
8
9
# File 'lib/multi_process/process/bundle_exec.rb', line 6

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