ruby-build

A tool to download, compile, and install Ruby on Unix-like systems. (by rbenv)

Ruby-build Alternatives

Similar projects and alternatives to ruby-build

  1. Visual Studio Code

    Visual Studio Code

  2. Nutrient

    Nutrient - The #1 PDF SDK Library. Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.

    Nutrient logo
  3. HomeBrew

    🍺 The missing package manager for macOS (or Linux)

  4. PostgreSQL

    Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch

  5. asdf

    Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more

  6. rbenv

    74 ruby-build VS rbenv

    Manage your app's Ruby environment

  7. view_component

    A framework for building reusable, testable & encapsulated view components in Ruby on Rails.

  8. mise

    73 ruby-build VS mise

    dev tools, env vars, task runner

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. RVM

    45 ruby-build VS RVM

    Ruby enVironment Manager (RVM)

  11. BeEF

    45 ruby-build VS BeEF

    The Browser Exploitation Framework Project

  12. Puma

    43 ruby-build VS Puma

    A Ruby/Rack web server built for parallelism

  13. Opal

    38 ruby-build VS Opal

    Ruby ♥︎ JavaScript

  14. chruby

    17 ruby-build VS chruby

    Changes the current Ruby

  15. ruby-install

    Installs Ruby, JRuby, TruffleRuby, or mruby

  16. ruby-pg

    A PostgreSQL client library for Ruby

  17. Phusion Passenger

    A fast and robust web server and application server for Ruby, Python and Node.js

  18. rbenv-installer

    Installer and doctor scripts for rbenv

  19. rubychanges

    Comprehensive changelog of Ruby Programming Language

  20. fry

    0 ruby-build VS fry

    Simple ruby version manager for fish

  21. Tokaido

    0 ruby-build VS Tokaido

    The home of the Tokaido app

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better ruby-build alternative or higher similarity.

ruby-build discussion

Log in or Post with

ruby-build reviews and mentions

Posts with mentions or reviews of ruby-build. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-12-25.
  • Ruby 3.4.0 Released
    15 projects | news.ycombinator.com | 25 Dec 2024
    Thanks for this.

    I used to use ruby a lot - mostly just because it's the nicest language for scripting things on unix. I can remember trying to get it set up a year or so ago and finding the process difficult (think I was using rvm).

    https://github.com/rbenv/ruby-build/wiki#suggested-build-env...

    probably good idea to point people here before they install ruby, since it'll compile for minutes then tell you it's missing a dependency, and you have to start the whole process over.

  • Instalar BeEF en Kali Linux 2024
    4 projects | dev.to | 5 Oct 2024
    sudo apt update sudo apt install -y build-essential libssl-dev libreadline-dev zlib1g-dev git git clone https://github.com/rbenv/rbenv.git ~/.rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc source ~/.zshrc git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build rbenv install 3.0.3 rbenv global 3.0.3
  • Setup Ubuntu para desenvolver com Ruby / Rails
    6 projects | dev.to | 1 Jul 2024
    # Instale as dependências de compilação # -- https://github.com/rbenv/ruby-build/wiki#ubuntudebianmint sudo apt install -y autoconf patch build-essential rustc libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libgmp-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev uuid-dev # Adicione o plugin ao asdf asdf plugin add ruby # Instale a última versão asdf install ruby latest:3
  • Test Driving a Rails API - Part One
    11 projects | dev.to | 11 Mar 2024
    Let’s get started. I prefer to manage my Ruby installations on my development machine with chruby paired with ruby-install. Another outstanding set of tools is rbenv with ruby-build. I highly recommend installing Ruby with one of those two sets of tools. Follow the instructions on their project’s READMEs. For this article, I’ll be running Ruby (MRI) v3.3.0.
  • what's the linux distribution you are using for rails dev?
    1 project | /r/rails | 15 Sep 2023
    Seems someone was able to fix your problem with openssl installed from linuxbrew, see herehttps://github.com/rbenv/ruby-build/discussions/2199
  • Ruby on Rails en Windows con WSL2
    2 projects | dev.to | 26 May 2023
    git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
  • Rails 7: production deploy from scratch (Ubuntu 22.04 edition)
    5 projects | dev.to | 2 Feb 2023
    $ git clone https://github.com/rbenv/rbenv.git ~/.rbenv $ echo 'eval "$(~/.rbenv/bin/rbenv init - bash)"' >> ~/.bashrc $ exec $SHELL $ git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build $ git clone https://github.com/rbenv/rbenv-vars.git "$(rbenv root)"/plugins/rbenv-vars $ rbenv install 3.2.0 $ rbenv global 3.2.0 # Test complete install with rbenv-doctor $ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/main/bin/rbenv-doctor | bash $ ruby -v # Shows ruby version number if correctly installed $ gem install bundler # You might be prompted to update some gems, see command below $ gem update --system 3.4.6 # Check if this is recommended after bundler installation $ bundle -v # Shows bundler version number if correctly installed
  • Ruby 3.2.0 Released
    2 projects | /r/ruby | 25 Dec 2022
    Great! Already available via ruby-build on rbenv!
  • Setup Ubuntu / WSL For Ruby Development
    3 projects | dev.to | 21 Nov 2022
    # Part One: Install basics # zlib1g-dev might be zlib-dev on Ubuntu 22.04 # lsb-release might be lsb_release on Ubuntu 22.04 sudo apt-get update && sudo apt-get -y install \ git \ ca-certificates \ curl \ gnupg \ build-essential \ lsb-release \ zlib1g-dev \ libssl-dev \ zsh && \ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" # Part Two: Installs & sets up rbenv, installs ruby git clone https://github.com/rbenv/rbenv.git ~/.rbenv && \ echo 'eval "$(~/.rbenv/bin/rbenv init - zsh)"' >> ~/.zshrc && \ source ~/.zshrc && \ git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build && \ rbenv install 3.1.2 && \ rbenv global 3.1.2 # Part Three: Optional minimum setup for Rails development echo "gem: --no-document" >> ~/.gemrc && \ gem install bundler && \ gem install rails
  • OpenSSL::Digest::DigestError when using MD4
    1 project | dev.to | 15 Nov 2022
    I'm using rbenv to manage Ruby versions, and it turns out they recently started building Ruby with OpenSSL 3.0 instead of OpenSSL 1.1.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 17 Feb 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic ruby-build repo stats
27
3,898
8.9
6 days ago

Sponsored
Nutrient - The #1 PDF SDK Library
Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.
nutrient.io

Did you know that Shell is
the 11th most popular programming language
based on number of references?