File: C:/Ruby27-x64/ridk_use/ridk.cmd
@echo off
if "x%~1" == "xuse" (
@echo on
if defined RI_DEVKIT (
echo Disable MSYS2 variables for path %RI_DEVKIT%
for /f "delims=" %%x in ('ruby --disable-gems -S -x ridk.cmd disable') do @set "%%x"
)
@for /f "delims=" %%x in ('%~dp0../bin/ruby --disable-gems '%~dp0ridk_use.rb' %*') do @set "%%x"
@exit /b %ERRORLEVEL%
)
:: Forward any other ridk call to ridk.cmd of the active ruby version
@for /f "delims=" %%x in ('ruby -rrbconfig -e "puts RbConfig::TOPDIR"') do set "RPATH=%%x"
"%RPATH%\bin\ridk.cmd" %*
@exit /b %ERRORLEVEL%
#%/
#!/mingw64/bin/ruby
require "ruby_installer/runtime"
RubyInstaller::Runtime::Ridk.run!(ARGV)