Shared Hosting for Everyone, imagined by developers, for developers.
Discovering the Public Cloud[package]
and [version]
have to be replaced by the name of the package and version to be installed.
3.3 | 3.2 | 3.1 | 3.0 |
2.7 | 2.6 | 2.5 | 2.4 | 2.3 | 2.2 | 2.1 | 2.0 |
1.9 | 1.8 |
The default version can be changed from the administration section, under Environment > Ruby. This is the version that is especially used when you start ruby
.
Versions are not necessarily already installed.
You can view the error logs in the $HOME/admin/logs/uwsgi/[id].log
file where [id]
is the identifier for your site, shown in the Web > Sites section.
An extract of these logs is presented in the administration’s interface (Logs - 📄).
You need to always use ruby
(or /usr/bin/ruby
). Never use ruby2.4
or any other command.
To force the use of a different version of Ruby other than the default one, define the environment variable RUBY_VERSION
:
$ RUBY_VERSION=2.3 ruby
In your scripts, use /usr/bin/ruby
as shebang:
#!/usr/bin/ruby
To force the use of a specific version of Ruby:
#!/usr/bin/eval RUBY_VERSION=2.3 ruby
The other binaries included in Ruby (gem
, irb
, ri
, etc.) work the same way.
Your Ruby environment starts off empty, with no ready installed libraries other than the standard library.
You can use gem
to install packages:
$ gem install [package]
Packages are installed in the standard $HOME/.gem
directory and they are automatically added to load path by Ruby.
Note that you will need to re-install the packages if you change the major Ruby version (versions 2.3 and 2.4 are two different major versions, whereas 2.3.1 and 2.3.0 use the same major version).
You can specify a specific version:
$ gem install [package] -v [version]
$ gem uninstall [package]
We recommend using Bundler if you use a number of different Ruby applications so that each one has its own separate environment. Bundle installs the packets listed in a Gemfile.
$ bundle install
To make a Ruby application accessible over the web, you need to add a site in the Web > Sites section of the alwaysdata administration. We offer the Ruby Rack type which uses the uWSGI web server.
You can also fill-in a number of optional fields:
You can use another web server by launching it as a User Program type.