How To Install rubygem-introspection on AlmaLinux 8

In this tutorial we learn how to install rubygem-introspection in AlmaLinux 8. rubygem-introspection is Dynamic inspection of the hierarchy of method definitions on a Ruby object

Introduction

In this tutorial we learn how to install rubygem-introspection on AlmaLinux 8.

What is rubygem-introspection

Dynamic inspection of the hierarchy of method definitions on a Ruby object.

We can use yum or dnf to install rubygem-introspection on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install rubygem-introspection.

Install rubygem-introspection on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install rubygem-introspection using dnf by running the following command:

sudo dnf -y install rubygem-introspection

Install rubygem-introspection on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install rubygem-introspection using yum by running the following command:

sudo yum -y install rubygem-introspection

How To Uninstall rubygem-introspection on AlmaLinux 8

To uninstall only the rubygem-introspection package we can use the following command:

sudo dnf remove rubygem-introspection

References

Summary

In this tutorial we learn how to install rubygem-introspection on AlmaLinux 8 using yum and dnf.