├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .yardopts ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── subprocess.rb └── subprocess │ └── version.rb ├── rbi └── subprocess.rbi ├── subprocess.gemspec └── test ├── bin └── ppid ├── test_empty_stdin.rb └── test_subprocess.rb /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/subprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/lib/subprocess.rb -------------------------------------------------------------------------------- /lib/subprocess/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module Subprocess 3 | VERSION = '1.5.7' 4 | end 5 | -------------------------------------------------------------------------------- /rbi/subprocess.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/rbi/subprocess.rbi -------------------------------------------------------------------------------- /subprocess.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/subprocess.gemspec -------------------------------------------------------------------------------- /test/bin/ppid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $PPID 4 | -------------------------------------------------------------------------------- /test/test_empty_stdin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/test/test_empty_stdin.rb -------------------------------------------------------------------------------- /test/test_subprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/subprocess/HEAD/test/test_subprocess.rb --------------------------------------------------------------------------------