From: "luislavena (Luis Lavena)" Date: 2012-07-26T07:37:04+09:00 Subject: [ruby-core:46775] [ruby-trunk - Feature #6793] easier ability to "run as the currently running ruby" Issue #6793 has been updated by luislavena (Luis Lavena). =begin Already available, no RubyGems involved: C:\Users\Luis>ruby --disable-gems -rrbconfig -v -e "puts RbConfig.ruby" ruby 2.0.0dev (2012-07-13 trunk 36378) [i386-mingw32] C:/Users/Luis/Tools/Ruby/ruby-2.0.0dev-i386-mingw32/bin/ruby.exe =end ---------------------------------------- Feature #6793: easier ability to "run as the currently running ruby" https://bugs.ruby-lang.org/issues/6793#change-28446 Author: rogerdpack (Roger Pack) Status: Open Priority: Normal Assignee: Category: Target version: Hello all. I couldn't remember if this had been requested before or not but... It would be kind to be able to do: current_ruby = OS.ruby_bin system("#{current_ruby} another_file.rb") And thus guarantee execution of a sub-file using the same ruby executable. Today we have system("#{Gem.ruby} another_file.rb") but I'd like to have something available without loading full rubygems. Python equivalent: sys.executable Suggestion: >> OS.ruby_bin # or OS.executable, etc. => "C:/installs/Ruby193p194/bin/ruby.exe" or >> RbConfig.??? => "C:/installs/Ruby193p194/bin/ruby.exe" Thanks. -roger- -- http://bugs.ruby-lang.org/