Using mongrel (1.1.5)
Using normalize_attributes (0.1.6)
Using rails (3.0.7)
System.java:-2:in arraycopy': java.lang.ArrayIndexOutOfBoundsException from DefaultResolver.java:111:inmakeTime’
from DefaultResolver.java:277:in create' from DefaultResolver.java:317:inhandleScalar’
from DefaultResolver.java:435:in orgHandler' from DefaultResolver.java:455:innode_import’
from DefaultResolver$s$1$0$node_import.gen:65535:in call' from CachingCallSite.java:137:incall’
from RubyLoadHandler.java:40:in handle' from Parser.java:300:inaddNode’
from DefaultYAMLParser.java:676:in yyparse' from Parser.java:290:inyechtparse’
from Parser.java:284:in parse' from YParser.java:152:inload’
from YParser$s$0$1$load.gen:65535:in call' from JavaMethod.java:630:incall’
We ran into this issue last night. In our case it seemed to be related
to
RSpec 2.6. We changed Gemfile to bundle 2.4 instead and it worked. You
might
want to try different versions of your gems and/or a different
repository.
We ran into this issue last night. In our case it seemed to be related to
RSpec 2.6. We changed Gemfile to bundle 2.4 instead and it worked. You might
want to try different versions of your gems and/or a different repository.
gem ‘rspec’, ‘~> 2.4’
The problematic rspec 2.6 will still be matched by that version
specification – ~>2.4 means >= 2.4 && < 3.0. The actual problem is with
rspec-core 2.6.1, so putting rspec-core 2.6.0 in your Gemfile is a
workaround if your problem is with rspec.
If it isn’t with rspec, it could be any of your dependencies that has
had a recent release and which isn’t locked down. The best way to narrow
it down is to try installing each one with the version restriction in
your Gemfile and see what fails. Then lock that gem to the previous
release.
The problematic rspec 2.6 will still be matched by that version specification –
~>2.4 means >= 2.4 && < 3.0. The actual problem is with rspec-core 2.6.1, so
putting rspec-core 2.6.0 in your Gemfile is a workaround if your problem is with
rspec.
If it isn’t with rspec, it could be any of your dependencies that has had a
recent release and which isn’t locked down. The best way to narrow it down is to
try installing each one with the version restriction in your Gemfile and see what
fails. Then lock that gem to the previous release.
But I have a lot of gems, I should try each one?
I’m really really disappointed because this bad bug.