| Why aren't my output statements appearing?
If a user runs code such as: puts "gimme your name:"
name = gets.chomp
puts "hello, #{name}"
You won't see the "gimme your name", before being prompted for
input (name = gets.chomp) first. After the input, the two puts lines
are printed out. This is a result of the way streams are handled. There's a couple solutions. The first is to manually flush the stream after each put. The second is to set: $stdout.sync = true |
|
| What language is RDT written in?
RDT is written almost entirely in Java. The Eclipse platform is Java based, and so
writing plugins for it requires us to use Java. (Unless you're a smart cookie who can find
a way to let us use ruby - perhaps JRuby?) |
|
| Which version of Eclipse should I install?
The RDT Development Team always aims to be compatible with the absolute latest version of Eclipse.
The current release of RDT should be compatible with Eclipse 3.0+. |
|
| Which components of Eclipse do I need?
Generally speaking you should be able to download the Eclipse platform, without the JDT (unless you plan on doing Java development). |









