How to Install and Uninstall rubygem-scoped_search.noarch Package on Fedora 34

Last updated: October 10,2024

1. Install "rubygem-scoped_search.noarch" package

Please follow the steps below to install rubygem-scoped_search.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install rubygem-scoped_search.noarch

2. Uninstall "rubygem-scoped_search.noarch" package

Learn how to uninstall rubygem-scoped_search.noarch on Fedora 34:

$ sudo dnf remove rubygem-scoped_search.noarch $ sudo dnf autoremove

3. Information about the rubygem-scoped_search.noarch package on Fedora 34

Last metadata expiration check: 1:54:00 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : rubygem-scoped_search
Version : 4.1.0
Release : 8.fc33
Architecture : noarch
Size : 34 k
Source : rubygem-scoped_search-4.1.0-8.fc33.src.rpm
Repository : fedora
Summary : Easily search your ActiveRecord models
URL : https://github.com/wvanbergen/scoped_search/wiki
License : MIT
Description : Scoped search makes it easy to search your ActiveRecord-based models. It will
: create a named scope :search_for that can be called with a query string. It
: will build an SQL query using the provided query string and a definition that
: specifies on what fields to search. Because the functionality is built on
: named_scope, the result of the search_for call can be used like any other
: named_scope, so it can be chained with another scope or combined with
: will_paginate. Because it uses standard SQL, it does not require any setup,
: indexers or daemons. This makes scoped_search suitable to quickly add basic
: search functionality to your application with little hassle. On the other hand,
: it may not be the best choice if it is going to be used on very large data sets
: or by a large user base.