0

I want to deploy a RoR application that uses a gem capybara-webkit. Is there any free RoR hosting site capable of using that gem?

Heroku is not capable of using it: Is it possible to run capybara-webkit (i.e. forked webkit_server) on Heroku Cedar?

OpenShift is also not capable: https://www.openshift.com/forums/express/error-in-installing-capybara-webkit-gem-while-trying-to-deploy-juvia-rails-app

Is there any other alternative?

Community
  • 1
  • 1
mirelon
  • 4,896
  • 6
  • 40
  • 70

2 Answers2

0

I have tired capybara-webkit with digital ocean it works well for me. for more information http://blog.55minutes.com/2013/09/running-capybara-webkit-specs-with-jenkins-ci/

shakthydoss
  • 2,551
  • 6
  • 27
  • 36
0

If you just need to deploy the app on Heroku (and not run tests with capybara-webkit on Heroku), exclude caybara-webkit from the installed dependencies on your Heroku app:

heroku config:add BUNDLE_WITHOUT="development:performance:test"