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 = args.last.is_a?(Hash) ? args.pop : {} super %w[bundle exec] + args, opts end |