Recently I added rspec test in my rails 2.3.5 but I wasn't able to run simply rake -T command. Then I found Rails 3 - If I'm using RSpec, can I just delete the 'test' folder? and I added gem test-unit in my Gemfile. This is showing me below message.

rake aborted!
can't activate test-unit (= 1.2.3), already activated test-unit-2.3.0. Make sure all dependencies are added to Gemfile.
link|improve this question

75% accept rate
So, to be clear, you're using bundler with Rails 2.3? – aNoble Aug 4 '11 at 8:21
Yes, I am. I don't think there is something to do with bundler. – ashis Aug 4 '11 at 9:36
feedback

3 Answers

up vote 2 down vote accepted

You are trying to load old version of test-unit where new version is already activated. To fix this bug do either one

1.Removing your new version of test-unit

2.Find test-unit 1.2.3 version in rake file and replace it with 2.3.0

link|improve this answer
feedback

Try running

bundle exec rake -T

That will run the rake command in the context of your bundle which should lock in the correct version of all of your gems.

link|improve this answer
I think i need more explanation here. thx. – ashis Aug 5 '11 at 5:23
feedback

You must to doing something like config.gem 'test-unit', :version => '1.2.3' somewhere in test.rb. Remove this line and see if that works.

link|improve this answer
I got what you want to say. thx. – ashis Aug 5 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.