summaryrefslogtreecommitdiff
path: root/lib/open3/version.rb
AgeCommit message (Collapse)Author
2025-11-10[ruby/open3] [DOC] Missing documentsNobuyoshi Nakada
https://github.com/ruby/open3/commit/e6d09a6aa8
2023-12-16[ruby/open3] Bump up v0.2.1Hiroshi SHIBATA
https://github.com/ruby/open3/commit/b890922205
2023-11-07[ruby/open3] Bump up 0.2.0Hiroshi SHIBATA
https://github.com/ruby/open3/commit/0db9a0afe7
2022-12-14[ruby/open3] Bump version to 0.1.2Hiroshi SHIBATA
https://github.com/ruby/open3/commit/38904e204d
2021-12-09[ruby/open3] Add JRuby's Windows (JDK non-native) Open3 supportCharles Oliver Nutter
This adds JRuby's logic used on platforms where we do not have native access to posix_spawn and related posix functions needed to do fully-native subprocess launching and management. The code here instead uses the JDK ProcessBuilder logic to simulate most of the Open3 functionality. This code does not pass all tests, currently, but provides most of the key functionality on pure-Java (i.e. no native FFI) platforms. https://github.com/ruby/open3/commit/689da19c42
2020-07-30Extract version number from the sourceNobuyoshi Nakada
"requiring version.rb" strategy has some issues. - cannot work when cross-compiling - often introduces wrong namespace - must know the superclasses - costs at each runtime than at build-time etc. Notes: Merged: https://github.com/ruby/ruby/pull/3375
2019-11-07Promote open3 to default gemsHiroshi SHIBATA