Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 4, 2021 02:49 pm GMT

Set Up Rbenv Revisited

I have been working on setting up a new operating system distribution. I took some time to test out a different package manager, but ended up going back to my familiar toolset. This article will talk about package manager to manage Ruby version.

Package Managers

So what is a package manager?

A package manager or package-management system is a collection of software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer's operating system consistently.

They give you the ability to manage multiple versions of the same packages (i.e. Node.js, Ruby, etc.).

When it comes to Ruby, there are three major package managers to consider.

RVM - When I first started learning Ruby almost two years ago, and set up my MacBook Pro, I started with RVM. It worked fine, and I had no real issues. However, it seemed heavy, computer resource wise.

ASDF - this is a different package manager as it is language agnostic. You can install a plugin for the respect language (i.e. Ruby, nodejs, etc.). I recently tried this one, but have returned to rbenv, just because I prefer it and the Node package manger I use.

RBENV - this is my preference, and the focus of this article. A major pull of rbenv for me is that it's lighter, and by that I mean that it doesn't have to throw as many hooks into your computer system as rvm, although there is some load to the terminal. This is the exact same reason I prefer N to manage Node versus NVM, because there is ZERO terminal load. This may be the source of another article.

Enter the Clones

So, Homebrew offers a rbenv package install, and Ubuntu does as well. I have used both, but I prefer to have more control, so I just clone the repositories.
To set up RBENV there is the default way:

  • Clone rbenv to .rbenv
  • Clone rbenv-build to .rbenv/plugins
  • Set up .rbenv/bin in your $PATH
  • Set up .rbenv/bin/rbenv init in your shell
  • Restart shell
  • Run rbenv-doctor script to verify installation

There is thankfully an easier install script. This script installs or updates rbenv on your system. If Homebrew is detected, installation will proceed using brew install/upgrade. Otherwise, rbenv is installed under ~/.rbenv. Additionally, ruby-build is also installed if rbenv install is not already available. After the installation, a separate rbenv-doctor script is run to verify the success of the installation and to detect common issues.

# with curlcurl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash# alternatively, with wgetwget -q https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer -O- | bash
Enter fullscreen mode Exit fullscreen mode

Default Gems

There in one rbenv plugin which I prefer to set up and that is rbenv-default-gems. This plugin will manage installing a select set of gems whenever you update your version of ruby. Install the plugin:

git clone https://github.com/rbenv/rbenv-default-gems.git $(rbenv root)/plugins/rbenv-default-gems
Enter fullscreen mode Exit fullscreen mode

Create a simple text file: touch ~/.rbenv/default-gems. In this file create your link of preferred gems to install/update:

bundlerrails
Enter fullscreen mode Exit fullscreen mode

Now install your ruby version: rbenv install 3.0.0

Updating

When new versions of Ruby are releases it is important to update rbenv. There are two ways to do this. Since, you have literally cloned the repository, you can git pull, but there are two directories to do that in:

cd ~/.rbenvgit pull
Enter fullscreen mode Exit fullscreen mode

And for ruby-build

cd ~/.rbenv/plugins/ruby-buildgit pull
Enter fullscreen mode Exit fullscreen mode

Check on Ruby versions to install:

# list latest stable versions:$ rbenv install -l# list all local versions:$ rbenv install -L# install a Ruby version:$ rbenv install 2.7.2
Enter fullscreen mode Exit fullscreen mode

Footnote

This has been fun. Leave a comment or send me a DM on Twitter.

Shameless Plug: If you work at a great company, and you are in the market for a Software Developer with a varied skill set and life experiences, send me a message on Twitter and check out my LinkedIn.


Original Link: https://dev.to/eclecticcoding/set-up-rbenv-revisited-4ngo

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To