criticerz
criticerz

Reputation: 3397

Error after updating to Rails 3.0.5

I just upgraded to Rails 3.0.5 and installed the updated gems.

When I run the command "rails -v" to check what version I'm on.. I get the following error:

Could not find activesupport-3.0.4

Any idea of what could be causing this? When I run gem list I get the following versions for ActiveSupport:

activesupport (3.0.5, 2.3.5, 2.2.2, 1.4.4)"

Upvotes: 1

Views: 542

Answers (2)

Sam
Sam

Reputation: 2969

It may be the Gemfile.lock specifies 3.0.4. Perhaps remove that file (rm Gemfile.lock)?

Upvotes: 2

Shiv
Shiv

Reputation: 8412

open your Gemfile, change your version of Rails to 3.0.5 and then run

bundle install

Upvotes: 0

Related Questions