Module: SearchUI

Defined in:
lib/search_ui.rb,
lib/search_ui/version.rb

Overview

SearchUI is a library that provides interactive console-based searching capabilities

This module serves as the root namespace for the SearchUI library, which enables users to perform text-based searches through collections of objects directly in the terminal. It offers an intuitive interface for filtering results and selecting items based on user input patterns.

The main functionality is provided by the SearchUI::Search class, which handles the interactive search experience including input processing, display management, and result selection.

Defined Under Namespace

Classes: Search

Constant Summary collapse

VERSION =

SearchUI version

'0.0.8'
VERSION_ARRAY =

:nodoc:

VERSION.split('.').map(&:to_i)
VERSION_MAJOR =

:nodoc:

VERSION_ARRAY[0]
VERSION_MINOR =

:nodoc:

VERSION_ARRAY[1]
VERSION_BUILD =

:nodoc:

VERSION_ARRAY[2]