[ANN]RDE0.9.6.0 released

Hi.

RDE 0.9.6.0. released.
RDE is an IDE (Integrated Development Environment) for the script
language Ruby on Windows.

This version enhanced around editor functions.

You can get it from RAA.
http://www.ruby-lang.org/en/raa-list.rhtml?name=RDE(Ruby+Development+Environment)

Please try it

== 2002-06-24 0.9.6.0

  • More stable on running scripts.
  • Make data for AutoComplete from current editing file.
  • Add KeyOption menu
  • Add QuickIndex that you can set the condition of the code explorer quickly.
  • jump open from “require ‘file’” by double click on ‘file’
  • save window size on exit
  • Add JavaFountain.
  • Prohibit executing rde double.
  • Add Constant in data of AutoComplete
  • Auto Indent
  • bug fix

---- sakazuki(QZS01353@nifty.ne.jp) ----

I would really like to use RDE but I am having some issues with it right off
the bat.

If I type in the following program

a=1
b=2
c=3
d=4
print a,b,c,d

and then I do Debug | Start/Continue, then I arrive on the first statement.
OK that’s good. Then I do a Debug | Step Over and I am now on c=3. Why is
that?
The statement b=2 has executed because of what I see in the Local window. It
seems
to step by two statements.

Other nit picks:

  1. When I type a \ I get a Yen character
  2. It would be nice if the console output didn’t include output from
    debug.rb, just
    my program’s output.

Please don’t take this criticism to hard. I think this program has great
potential!

Steve Tuckner

···

-----Original Message-----
From: sakazuki [mailto:QZS01353@nifty.ne.jp]
Sent: Tuesday, June 25, 2002 4:54 PM
To: ruby-talk ML
Subject: [ANN]RDE0.9.6.0 released

Hi.

RDE 0.9.6.0. released.
RDE is an IDE (Integrated Development Environment) for the script
language Ruby on Windows.

This version enhanced around editor functions.

You can get it from RAA.
http://www.ruby-lang.org/en/raa-list.rhtml?name=RDE(Ruby+Development+Environ
ment)

Please try it

== 2002-06-24 0.9.6.0

  • More stable on running scripts.
  • Make data for AutoComplete from current editing file.
  • Add KeyOption menu
  • Add QuickIndex that you can set the condition of the code explorer
    quickly.
  • jump open from “require ‘file’” by double click on ‘file’
  • save window size on exit
  • Add JavaFountain.
  • Prohibit executing rde double.
  • Add Constant in data of AutoComplete
  • Auto Indent
  • bug fix

---- sakazuki(QZS01353@nifty.ne.jp) ----

Hello,

···

On Wed, Jun 26, 2002, sakazuki wrote:

Hi.

RDE 0.9.6.0. released.
RDE is an IDE (Integrated Development Environment) for the script
language Ruby on Windows.

This version enhanced around editor functions.

You can get it from RAA.
http://www.ruby-lang.org/en/raa-list.rhtml?name=RDE(Ruby+Development+Environment)

Could it be possible to get some linux version of this nice thing ? I’ve
played a bit with it and this looks really nice (i’m particularly found
of the completion which is working).

Thanks,

Pierre Baillet
Sauvez un arbre, mangez un castor

Hello, Mr. Steve Tuckner.

I would really like to use RDE but I am having some issues with it right off
the bat.

If I type in the following program

a=1
b=2
c=3
d=4
print a,b,c,d

and then I do Debug | Start/Continue, then I arrive on the first statement.
OK that’s good. Then I do a Debug | Step Over and I am now on c=3. Why is
that?
The statement b=2 has executed because of what I see in the Local window. It
seems
to step by two statements.

Maybe you use cygwin’s ruby binary. this reason is the return code of it.
Check [Options]/[Other]/[Send LF Only] and test it.
Or snapshot version of cygwin’s ruby binary will work well without above
setting.

Other nit picks:

  1. When I type a \ I get a Yen character

I do not know what letter you should get not in japanese language.
please teach me, should a back slash be gotten?

  1. It would be nice if the console output didn’t include output from
    debug.rb, just
    my program’s output.

I think [Run]-[Run] is the functions that your request?.

RDE’s debugger is the wrapper of debug.rb.

So the debugger’s behavior is the same with debug.rb.

Thanks.

---- sakazuki (QZS01353@nifty.ne.jp) ----

Maybe you use cygwin’s ruby binary. this reason is the return code of it.
Check [Options]/[Other]/[Send LF Only] and test it.
Or snapshot version of cygwin’s ruby binary will work well without above
setting.

This works perfect for cygwin!

I do not know what letter you should get not in japanese language.
please teach me, should a back slash be gotten?

A backslash would be fine. All other top row keys seem to work fine.

I think [Run]-[Run] is the functions that your request?.

RDE’s debugger is the wrapper of debug.rb.

So the debugger’s behavior is the same with debug.rb.

Hmm… I now see what you mean. Perhaps there would be a way to separate the
output from debug.rb’s output. You could have a tabbed window that had just
program console output in it. A global file handle to print to could also be
used (eg. CONSOLE.print to put output into that special tabbed window) –
though this is not very elegant.

Thanks again for all your work!

Steve Tuckner