I want to deploy a ruby on rails project on a server without rails. Is this possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will need to have ruby installed on your server, but if you cannot add a gem, you can vendor rails into your project so that you won’t need to run bundle install or gem install. You can run
bundle packagefrom the command line to get all of the gems in your Gemfile into/vendor.In the scenario that you cannot execute ruby, or ruby isn’t able to be installed, you’re out of luck. I’d check out http://www.heroku.com or http://www.engineyard.com for optimized Rails hosting environments, among many others. Some more good info is available on deployments at http://rubyonrails.org/deploy.