Eclipse issues with Ruby

Not directly related I know, but maybe some of you have had this same
issue.

I’m working on a controller that’s getting a little big. Not huge, but
somewhat. Now, for no apparent reason Eclipse is pausing when I’m
inserting and deleting text. It’s incredibly annoying. I have a beefy
dev machine and I have no idea what it’s doing - I’ve tried turning
off a lot of the intellisense stuff, which doesn’t work that well
anyway, but it’s had no effect.

Anyone else had this problem and solved it? Running Vista and the
Eclipse 3.3.0 and RDT 0.9.3.6479.

On 3/21/08, Backov [email protected] wrote:

I’m working on a controller that’s getting a little big. Not huge, but
somewhat. Now, for no apparent reason Eclipse is pausing when I’m
inserting and deleting text. It’s incredibly annoying. I have a beefy
dev machine and I have no idea what it’s doing - I’ve tried turning
off a lot of the intellisense stuff, which doesn’t work that well
anyway, but it’s had no effect.

Anyone else had this problem and solved it? Running Vista and the
Eclipse 3.3.0 and RDT 0.9.3.6479.

Java = slow
Vista = slow
Java + Vista = slow ** 2

I’d try an alternate OS. Failing that, they do make vim for windoze.


Greg D.
http://destiney.com/

Thanks for the troll. Anyone actually have some helpful advice?

On 3/21/08, Backov [email protected] wrote:

Thanks for the troll.

I wasn’t trolling. I only pointed out how you’ve placed two
known-to-be-slow pieces of software on your “beefy dev machine” that
obviously isn’t up to the task… So I suggested a much lighter-weight
alternate editor, vim.

What “features” does Vista have that are so conducive to Rails
development anyway?

What’s so hard about actually learning the API and ditching the IDE
altogether?

Anyone actually have some helpful advice?

Yeah, ask your off-topic questions somewhere else, and stop top-posting.


Greg D.
http://destiney.com/

I found the same problem. It seems to pause whenever my cursor is
inside square braces, or at least it’s more noticeable. I attributed it
to one of the releases of RadRails. I think that after I upgraded to
the latest version that stopped, at least I haven’t noticed it as much.

Mick

Go back under your bridge.

Backov wrote:

I’m working on a controller that’s getting a little big. Not huge, but
somewhat. Now, for no apparent reason Eclipse is pausing when I’m
inserting and deleting text. It’s incredibly annoying. I have a beefy
dev machine and I have no idea what it’s doing - I’ve tried turning
off a lot of the intellisense stuff, which doesn’t work that well
anyway, but it’s had no effect.

I’ve seen similar things from Eclipse with perl. I believe it’s due to
Eclipse checking the code for syntax errors which it does every time you
pause your typing for some amount of time. I think the delay is
configurable. Anyway, not knowing much of anything about the Eclipse
ruby plugin, I would bet that Eclipse detects syntax errors by
continually executing “ruby yourCode.rb” and parsing the results into
the IDE. That takes considerable effort for your computer and, as your
file gets bigger, will just take longer and longer until the freeze is
not only noticeable, but annoying as hell.

My recommendation: NetBeans 6. Not to start an editor war (especially
since I like emacs better than vi), but I’m an Eclipse user at work
(Java stuff) and I use NetBeans when I’m editing Ruby at home. It’s
just a much much better Ruby editor, in my opinion. And yes, I’ve tried
Aptana, too. I’m working in Linux, but I imagine the experience would
be similar in Windows.

  • Aaron