Is it safe to install ActiveScriptRuby on Windows XP with standard Ruby 1.9.2

I use ruby 1.9.2p180 (2011-02-18) [i386-mingw32]. Is it safe to install ActiveScriptRuby (based on 1.8.7)?

Update (after the approval of Luis Lavena):

I have successfully installed ActiveScriptRuby and pik. Proof of:

--------------------- PATH
C:\Ruby192\bin
C:\WINDOWS\system32
...
--------------------- pik ls
  187: ruby 1.8.7 (2010-12-23 patchlevel 330) [i386-mswin32]
* 192: ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
--------------------- ruby -v
ruby 1.9.2p180 (2011-02-18) [i386-mingw32]

RUBY C:\Documents and Settings\eh
    cscript m:\lib\kurs0705\xpl\xplmssc.vbs /xf:showLanguages
    xplmssc.vbs - xplore microsoft script control
    ...
    -------------------------------------------------------------------------------
    VBScript 5.7.16599 * cscript 5.7 * WIN XP * WINXPSP3 * eh * 5/12/2011 7:58:30 PM
    ===============================================================================
    showLanguages - show languages
    -------------------------------------------------------------------------------
    -------- VBScript
     Expr: 47+11 => 58
     Yes, we can print (WScript.Echo).
    ...
    -------- RubyScript
     Expr: 47+11 => 58
     Yes, we can print (puts).
    ...
    xplmssc.vbs: Erfolgreich beendet. (0) [ 0.42969 secs ]

RUBY C:\Documents and Settings\eh
    pik use 187

RUBY C:\Documents and Settings\eh
    papa
    C:\Program Files\ruby-1.8\bin
    C:\WINDOWS\system32
    ...

RUBY C:\Documents and Settings\eh
    ruby -v
    ruby 1.8.7 (2010-12-23 patchlevel 330) [i386-mswin32]

So now everything looks good. Thanks a lot, Louis!

+3
source share
1 answer

Until you install both versions of Ruby in the same directory, everything is fine.

ActiveScriptRuby and RubyInstaller are incompatible with each other, excluding for a second their different version of Ruby, they use a different compiler toolchain.

If you installed RubyInstaller 1.9.2 in C:\Ruby192, you can safely install ASR in another folder.

pik Ruby Windows:

https://github.com/vertiginous/pik

+5

All Articles