module MultiProcess::Process::BundleExec
Provides functionality to wrap command in with bundle execute.
Public Class Methods
new(*args)
click to toggle source
Calls superclass method
# 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