Sha256: be74078801a50fa6372ac389919320b9c1417295153f0ab4e9519a53a26c1204

Contents?: true

Size: 256 Bytes

Versions: 6

Compression:

Stored size: 256 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 : {}
      super %w(bundle exec) + args, opts
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
multi_process-1.1.1 lib/multi_process/process/bundle_exec.rb
multi_process-1.1.0 lib/multi_process/process/bundle_exec.rb
multi_process-1.0.0 lib/multi_process/process/bundle_exec.rb
multi_process-0.5.2 lib/multi_process/process/bundle_exec.rb
multi_process-0.5.1 lib/multi_process/process/bundle_exec.rb
multi_process-0.5.0 lib/multi_process/process/bundle_exec.rb