stergosz
stergosz

Reputation: 5860

passenger error "Could not find activesupport-3.2.1 in any of the sources"

I just managed to upload my rails app files via capistrano into my ec2 instance but now i am getting some errors when i try to access the web page:

Ruby (Rack) application could not be started

Error message:
    Could not find activesupport-3.2.1 in any of the sources (Bundler::GemNotFound)
Exception class:
    PhusionPassenger::UnknownError

i installed activesupport and re-deployed it into the server... problem still persists... any thoughts?

Upvotes: 0

Views: 776

Answers (1)

Bill
Bill

Reputation: 3209

Did you add the gem to the Gemfile?

Did you check Gemfile.lock to your repository?

Did you tell your capfile to execute bundle install --deployment or bundle install?

Upvotes: 1

Related Questions