How do I run irb?

Issue #97 resolved
Gaëtan Caillaut created an issue

Hello,

I didn't find how to run irb from uru. I'm running uru 0.8.3 without "system" ruby, though I registered a ruby installation (which works fine with "uru ruby").

Comments (2)

  1. Jon repo owner

    Activate one of your registered rubies and run irb as you normally would. Something like

    $ uru ls
        241p111     : ruby 2.4.1p111 (2017-03-22 revision 58053) [x64-mingw32]
    
    $ uru 241
    ---> now using ruby 2.4.1-p111 tagged as `241p111`
    
    $ irb -rdigest
    irb(main):001:0> Digest::SHA256.hexdigest 'Hello from IRB and uru!'
    => "a7bf1129cd8e6905002d66120a904380d20afc9d1d5342409433a64ffe27ff1c"
    irb(main):002:0> exit
    
  2. Log in to comment