Method: ALib::Util#which_ruby

Defined in:
lib/alib-0.5.1/util.rb

#which_rubyObject

determine path of current ruby interpreter (argv in c)



1023
1024
1025
1026
1027
1028
# File 'lib/alib-0.5.1/util.rb', line 1023

def which_ruby
#--{{{
  c = ::Config::CONFIG
  File::join(c['bindir'], c['ruby_install_name']) << c['EXEEXT']
#--}}}
end