File: options.rb

package info (click to toggle)
ruby-process-executer 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: ruby: 873; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require_relative 'options/base'
require_relative 'options/spawn_options'
require_relative 'options/spawn_with_timeout_options'
require_relative 'options/run_options'
require_relative 'options/run_with_capture_options'
require_relative 'options/option_definition'

module ProcessExecuter
  # Options related to spawning or running a command
  # @api public
  module Options; end
end