Module: Graphina

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

Overview

Graphina module

The Graphina module serves as the root namespace for the Graphina gem, which provides terminal-based data visualization capabilities. It contains the core classes and modules responsible for creating real-time graphical displays using Unicode characters and ANSI styling in terminal environments.

The module organizes the various components of the gem including graph visualization classes, panel configurations, display management, and formatting utilities into a coherent namespace structure for easy access and usage.

Defined Under Namespace

Modules: GraphinaConfig Classes: Graph, Panel, Setup

Constant Summary collapse

VERSION =

Graphina version

'0.4.1'
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]