RADRails and Ruby 1.8.4 RC1 for Windows debugger problem

i’m using RADRails 0.61 on Windows XP for both Rails and plain Ruby
coding.
In my first plain ruby code debugging session, i encountered the
following problem:

ruby 1.8.4 debugger listens on port 2385

This application has requested the Runtime to terminate it in an unusual
way.
Please contact the application’s support team for more information.

the code i was trying to practice debugging on is shown below.

def one(arg)
puts “arg = #{arg}”
if block_given?
“block given to ‘one’ returns #{yield}”
else
arg
end
end

def two
if block_given?
“block given to ‘two’ returns #{yield}”
end
end

result1 = one two {
“three”
}

result2 = one two do
“three”
end

puts “With braces, result = #{result1}”
puts “With do/end, result = #{result2}”

I get same error in eclipse 3.1 and RDT, doesn’t matter what the ruby
code is, ideas?

try rolling back to ruby 1.8.2

http://rubyeclipse.mktec.com/cgi-bin/trac.py/ticket/81

Ville Maanpaa wrote:

I get same error in eclipse 3.1 and RDT, doesn’t matter what the ruby
code is, ideas?