I've installed DLTK 2.0 on Eclipse Indigo running on Max OS X 10.7
I've added ruby 1.8.7 interpreter in eclipse preferences page for Ruby.
But when I create a ruby project using source of existing rails project, a lot of syntax errors are reported in problems view.
Here's a sample:
syntax error, unexpected tAMPER
Above error is reported at '&' character on second line below:
keys.each do |key|
define_method(key) do |&block|
@configuration[key] = block
end
end
Searching for a solution to above problem I landed on a page that seems to suggest that DLTK uses JRuby internally. Could this problem be due to an older JRuby version bundled in DLTK?