├── .expeditor ├── config.yml ├── run_linux_tests.sh ├── run_windows_tests.ps1 ├── update_version.sh └── verify.pipeline.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_TEMPLATE.md │ ├── DESIGN_PROPOSAL.md │ ├── ENHANCEMENT_REQUEST_TEMPLATE.md │ └── SUPPORT_QUESTION.md ├── copilot-instructions.md └── workflows │ └── ci-main-pull-request-checks.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .vscode └── mcp.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── lib └── mixlib │ ├── shellout.rb │ └── shellout │ ├── exceptions.rb │ ├── helper.rb │ ├── unix.rb │ ├── version.rb │ ├── windows.rb │ └── windows │ └── core_ext.rb ├── mixlib-shellout-universal-mingw-ucrt.gemspec ├── mixlib-shellout.gemspec └── spec ├── mixlib ├── shellout │ ├── helper_spec.rb │ └── windows_spec.rb └── shellout_spec.rb ├── spec_helper.rb └── support ├── dependency_helper.rb └── platform_helpers.rb /.expeditor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.expeditor/config.yml -------------------------------------------------------------------------------- /.expeditor/run_linux_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.expeditor/run_linux_tests.sh -------------------------------------------------------------------------------- /.expeditor/run_windows_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.expeditor/run_windows_tests.ps1 -------------------------------------------------------------------------------- /.expeditor/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.expeditor/update_version.sh -------------------------------------------------------------------------------- /.expeditor/verify.pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.expeditor/verify.pipeline.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DESIGN_PROPOSAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/ISSUE_TEMPLATE/DESIGN_PROPOSAL.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ENHANCEMENT_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/ISSUE_TEMPLATE/ENHANCEMENT_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci-main-pull-request-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.github/workflows/ci-main-pull-request-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | -f documentation --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.4.9 -------------------------------------------------------------------------------- /lib/mixlib/shellout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/exceptions.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/helper.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/unix.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/version.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/windows.rb -------------------------------------------------------------------------------- /lib/mixlib/shellout/windows/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/lib/mixlib/shellout/windows/core_ext.rb -------------------------------------------------------------------------------- /mixlib-shellout-universal-mingw-ucrt.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/mixlib-shellout-universal-mingw-ucrt.gemspec -------------------------------------------------------------------------------- /mixlib-shellout.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/mixlib-shellout.gemspec -------------------------------------------------------------------------------- /spec/mixlib/shellout/helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/mixlib/shellout/helper_spec.rb -------------------------------------------------------------------------------- /spec/mixlib/shellout/windows_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/mixlib/shellout/windows_spec.rb -------------------------------------------------------------------------------- /spec/mixlib/shellout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/mixlib/shellout_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/dependency_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/support/dependency_helper.rb -------------------------------------------------------------------------------- /spec/support/platform_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/mixlib-shellout/HEAD/spec/support/platform_helpers.rb --------------------------------------------------------------------------------