Deploy Rails app on Passenger Issue

I´m trying to deploy a new rails app on pushion passenger integrate as Apache Mod and always get the following error:

Could not find byebug-4.0.5 in any of the sources.

If a comment in Gemfile.lock this dependency a get another error message for coffe-script. And no mather what dependency I comment I get:

Could not find **whatever** in any of the sources.

My environment is:

For my app I just did...

rails new testapp
bundle install

And configure a new VirtualHost link to the public folder in testapp.

Thanks for your support.

Upvotes: 1

Views: 103

Answers (1)

errata
errata

Reputation: 26972

Would you really want to include byebug in production? Maybe only include it in the production group. Also make sure passenger is looking at the right path in order to find the gems as installed by bundler.

Upvotes: 2

Related Questions