[#6363] Re: rescue clause affecting IO loop behavior — ts <decoux@...>

>>>>> "D" == David Alan Black <dblack@candle.superlink.net> writes:

17 messages 2000/11/14
[#6367] Re: rescue clause affecting IO loop behavior — David Alan Black <dblack@...> 2000/11/14

Hello again --

[#6582] best way to interleaf arrays? — David Alan Black <dblack@...>

Hello --

15 messages 2000/11/26

[#6646] RE: Array Intersect (&) question — Aleksi Niemel<aleksi.niemela@...>

Ross asked something about widely known and largely ignored language (on

23 messages 2000/11/29
[#6652] RE: Array Intersect (&) question — rpmohn@... (Ross Mohn) 2000/11/29

aleksi.niemela@cinnober.com (Aleksi Niemel) wrote in

[#6723] Re: Array Intersect (&) question — Mathieu Bouchard <matju@...> 2000/12/01

> >Use a hash. Here's code to do both and more. It assumes that

[#6656] printing/accessing arrays and hashes — raja@... (Raja S.)

I'm coming to Ruby with a Python & Common Lisp background.

24 messages 2000/11/30

[ruby-talk:6168] Re: emacs-mode

From: Clemens Hintze <c.hintze@...>
Date: 2000-11-08 12:40:02 UTC
List: ruby-talk #6168
>>>>> "Johann" == Johann Spies <jhspies@adept.co.za> writes:

(...)

    Johann> I do not really understand the instruction in inf-ruby.el:

    Johann> ";;; (0) check ruby-program-name variable that can run
    Johann> your environment."

    Johann> Can somebody explain it to me please?

Of course,

sometimes it may happen that ruby (the interpreter) is not able to
find the irb.rb if it is not laying anywhere in the path. If it would
be in the path, you could simply perform

  ruby -S irb

to start it. But since (I don't know for sure) 1.6 the irb is
delivered together with the standard Ruby distribution. It will be
installed into the .../1.6/irb subdirectory. Now you have to use

  ruby -rirb/irb -e0

to start the irb. But you have to tell the inferior ruby shell how to
perform:

   (setq ruby-program-name "ruby -rirb/irb -e0 -- --inf-ruby-mode")

Now it should work!


HTH,
\cle


(...)

In This Thread