Re: [jruby-dev] Trying to get to the bottom of a bug..

2012-03-23 Thread Jonathan Coveney
Glad to be of help! Lord knows y'all have been super helpful to me. 2012/3/23 Thomas E Enebo > This is a bug. We walk the load paths (like classpath in Java, but > for n directories to search for .rb files in Ruby) and in the loop we > mutate the name during processing one of those directories:

Re: [jruby-dev] Trying to get to the bottom of a bug..

2012-03-23 Thread Thomas E Enebo
This is a bug. We walk the load paths (like classpath in Java, but for n directories to search for .rb files in Ruby) and in the loop we mutate the name during processing one of those directories: if (name.startsWith(entry)) { name = name.substring(entry.length());

[jruby-dev] Trying to get to the bottom of a bug..

2012-03-22 Thread Jonathan Coveney
This is JRuby 1.6.7. I was getting a string length error when doing a require in 1.9 mode. It was pretty weird to track down and I'm not sure how to replicated it outside of my pretty specific case, but I was hoping you could a) help replicate it b) see if this needs to be fixed c) give me a workar