Bundler::GemNotFound when deploying to Openshift

189 Views Asked by At

I just published my rails app to Openshift and I got the error message:

We're sorry, but something went wrong.

The log file says:

Could not find rake-10.4.2 in any of the sources (Bundler::GemNotFound)

I do not know how to debug this issue. This has happened to about 3 apps I have deployed in the last couple of hours.

Hers is a link to the full ruby log file:

https://gist.github.com/kinsomicrote/e3715be509a7375758ef

1

There are 1 best solutions below

3
On

Seems that you have problems with gems and passanger.

Did you run bundle install on the host? (if you have Gemfile)

If you already do, try to install puma or thin, and start webserver running bundle exec puma -b 0.0.0.0:8080 -d

to check if it working. Passanger sometimes is hard to setup.