How To Install rubygem-rack-test on CentOS 7

In this tutorial we learn how to install rubygem-rack-test on CentOS 7. rubygem-rack-test is Simple testing API built on Rack

Introduction

In this tutorial we learn how to install rubygem-rack-test on CentOS 7.

What is rubygem-rack-test

Rack used on its own or as a reusable starting point for Web frameworks and testing libraries to build on. Most of its initial functionality is an extraction of Merb 1.0’s request helpers feature.

We can use yum or dnf to install rubygem-rack-test on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install rubygem-rack-test.

Install rubygem-rack-test on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install rubygem-rack-test

Install rubygem-rack-test on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install rubygem-rack-test

How To Uninstall rubygem-rack-test on CentOS 7

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

sudo dnf remove rubygem-rack-test

References

Summary

In this tutorial we learn how to install rubygem-rack-test on CentOS 7 using yum and dnf.