├── .document ├── .github ├── dependabot.yml └── workflows │ ├── sync-ruby.yml │ ├── test-jruby.yml │ └── test.yml ├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── open3.rb └── open3 │ ├── jruby_windows.rb │ └── version.rb ├── open3.gemspec └── test ├── lib └── helper.rb └── test_open3.rb /.document: -------------------------------------------------------------------------------- 1 | LICENSE.txt 2 | README.md 3 | lib/ 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/sync-ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/.github/workflows/sync-ruby.yml -------------------------------------------------------------------------------- /.github/workflows/test-jruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/.github/workflows/test-jruby.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/lib/open3.rb -------------------------------------------------------------------------------- /lib/open3/jruby_windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/lib/open3/jruby_windows.rb -------------------------------------------------------------------------------- /lib/open3/version.rb: -------------------------------------------------------------------------------- 1 | module Open3 2 | # The version string 3 | VERSION = "0.2.1" 4 | end 5 | -------------------------------------------------------------------------------- /open3.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/open3.gemspec -------------------------------------------------------------------------------- /test/lib/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/test/lib/helper.rb -------------------------------------------------------------------------------- /test/test_open3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/open3/HEAD/test/test_open3.rb --------------------------------------------------------------------------------