How To Install rubygem-linked-list on Fedora 36

In this tutorial we learn how to install rubygem-linked-list in Fedora 36. rubygem-linked-list is Ruby implementation of Doubly Linked List, following some Ruby idioms

Introduction

In this tutorial we learn how to install rubygem-linked-list on Fedora 36.

What is rubygem-linked-list

Ruby implementation of Doubly Linked List, following some Ruby idioms.

We can use yum or dnf to install rubygem-linked-list on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install rubygem-linked-list.

Install rubygem-linked-list on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install rubygem-linked-list

Install rubygem-linked-list on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install rubygem-linked-list

How To Uninstall rubygem-linked-list on Fedora 36

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

sudo dnf remove rubygem-linked-list

rubygem-linked-list Package Contents on Fedora 36

/usr/share/gems/gems/linked-list-0.0.16
/usr/share/gems/gems/linked-list-0.0.16/LICENSE.txt
/usr/share/gems/gems/linked-list-0.0.16/lib
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list.rb
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list/conversions.rb
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list/list.rb
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list/node.rb
/usr/share/gems/gems/linked-list-0.0.16/lib/linked-list/version.rb
/usr/share/gems/specifications/linked-list-0.0.16.gemspec

References

Summary

In this tutorial we learn how to install rubygem-linked-list on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).