Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can't activate activesupport (>= 2.3.2, runtime), already activated activesupport-2.1.2. what does it mean?

while trying to start some old revision of an opensource rails project confronted with a cloudy error message:

"can't activate activesupport (>= 2.3.2, runtime), already activated activesupport-2.1.2"

What does it mean? Either versions of rails and activesupport are installed on my box.

I'm confused...

like image 442
krautsalat Avatar asked Jul 29 '09 10:07

krautsalat


1 Answers

Generally, a gem or plugin is loading 2.1.2 before Rails attempts to load 2.3.2. Best way to figure it out might be to comment out each gem requirement in environment.rb one at a time and see what happens.

like image 181
Matt Darby Avatar answered Oct 19 '22 21:10

Matt Darby