├── .editorconfig ├── .github └── workflows │ ├── documentation-coverage.yaml │ ├── documentation.yaml │ ├── rubocop.yaml │ ├── test-coverage.yaml │ ├── test-external.yaml │ └── test.yaml ├── .gitignore ├── .rubocop.yml ├── async-process.gemspec ├── config └── sus.rb ├── gems.rb ├── lib └── async │ ├── process.rb │ └── process │ ├── child.rb │ └── version.rb ├── license.md ├── readme.md ├── release.cert └── test └── async ├── process.rb └── process └── child.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/documentation-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/documentation-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/rubocop.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/test-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/test-external.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /pkg/ 3 | /gems.locked 4 | /.covered.db 5 | /external 6 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /async-process.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/async-process.gemspec -------------------------------------------------------------------------------- /config/sus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/config/sus.rb -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/gems.rb -------------------------------------------------------------------------------- /lib/async/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/lib/async/process.rb -------------------------------------------------------------------------------- /lib/async/process/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/lib/async/process/child.rb -------------------------------------------------------------------------------- /lib/async/process/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/lib/async/process/version.rb -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/readme.md -------------------------------------------------------------------------------- /release.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/release.cert -------------------------------------------------------------------------------- /test/async/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/test/async/process.rb -------------------------------------------------------------------------------- /test/async/process/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-process/HEAD/test/async/process/child.rb --------------------------------------------------------------------------------