How To Set up a Ruby on Rails 7 Development Environment on Ubuntu 22.04 LTS

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • rbenv-installer

    Installer and doctor scripts for rbenv

  • # Install dependencies required to install Ruby sudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev # Install rbenv via GitHub curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash # Add ~/.rbenv/bin to $PATH echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc # Load rbenv automatically echo 'eval "$(rbenv init -)"' >> ~/.bashrc # Apply changes to current Shell sessions source ~/.bashrc

  • ruby-build

    A tool to download, compile, and install Ruby on Unix-like systems.

  • # Download Ruby build plugin via GitHub git clone https://github.com/rbenv/ruby-build.git # Install Ruby build plugin cat ruby-build/install.sh PREFIX=/usr/local sudo ./ruby-build/install.sh

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts