Enscale provides Ruby support via:
Each run your choice of Ruby version:
You can switch Ruby version at any time in the Enscale dashboard.
Dependencies are resolved automatically by Bundler. Simply list required gems in your Gemfile and Bundler will search rubygems.org to install them for you. If you need to resolve a gem dependency from another location, specify its repository URL in your Gemfile and Bundler will download and install it from there for you instead.
Enscale offers all 3 standard deployment modes (development
, test
, production
) which you can select from during deployment, and change later, in the Enscale dashboard.
Bundler attempts to resolve your dependencies in 3 cases:
Bundler’s actions are logged and available to you in bundle_install.log
Any Ruby framework – just add the corresponding dependencies to your Gemfile! Here are some examples of popular frameworks you can run on Enscale:
Enscale provides a choice of 2 deployment methods for your Ruby application to suit your preferred workflow.
Ruby application deployment can take a few minutes due to high CPU consumption during the deployment process
Enscale executes any post-deployment configuration actions (e.g. db:migrate
) via rake according to commands found in the rake_deploy
file within your application root. This file is deleted after successful execution, and results are logged and available to you in rake_deploy.log
.