Ruby: Developing in Ruby: local setup

This documentation is part of the Development platform guide. You can view the complete guide here: Set up your development environment for a smooth and efficient workflow.

👋 Welcome to the Stackhero documentation!

Stackhero provides a ready-to-use Ruby cloud solution offering a range of advantages, including:

  • Deploy your application within seconds using a simple git push.
  • Use your own domain name and benefit from the automatic configuration of HTTPS certificates for enhanced security.
  • Take advantage of automatic backups, one-click updates, and clear, transparent, and predictable pricing.
  • Enjoy optimal performance and enhanced security thanks to a private, dedicated infrastructure.

Save time and make your life easier: it only takes 5 minutes to try Stackhero's Ruby cloud hosting solution!

A local Ruby environment gives you full control, but requires a few extra steps. You install Ruby, dependencies, and tools yourself.

asdf is a flexible version manager for multiple languages, including Ruby, Node.js, Python, and PHP. It makes it easy to keep projects on different versions and avoids conflicts between tools.

To get started, install asdf by following the official installation guide.

Once installed, you can check that asdf is working by running:

asdf version

If you see a version number, asdf is correctly installed.

To install the latest version of Ruby:

asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
asdf install ruby latest
asdf global ruby latest

Check that Ruby is working:

ruby --version

This confirms Ruby is ready to use.