-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.rb
44 lines (37 loc) · 1.22 KB
/
script.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Cell Tower Data Analyzer: A Ruby tool for parsing, analyzing, and visualizing data from cell towers, aiding in network optimization and decision-making.
#
# Author: Armoghan-ul-Mohmin
#
# More info here: https://github.com/Armoghans-Organization/Cell-Tower-Data-Analyzer.git
#
# Usage: ruby script.rb [OPTIONS]
# Example: ruby script.rb --help
#
require_relative 'Modules/colored_text'
require_relative 'Functions/enter'
require_relative 'Functions/exit'
require_relative 'Modules/banner'
require_relative 'Functions/menu'
require_relative 'Functions/average_signal_strength'
require_relative 'Functions/strong_signal_strength'
include ColoredText
include Press_Enter
include Exit_Message
include BannerPrinter
include Menu
##########################################################################
# Globals
##########################################################################
# Script Author Name
$author = "Armoghan-ul-Mohmin"
# Script Name
$name = "Cell Tower Data Analyzer"
# Script Version
$version = "1.0.0"
# Script Description
$description = "Analyzing & Visualizing data from CellTowers"
# Script URL
$url = "https://github.com/Armoghans-Organization/Cell-Tower-Data-Analyzer"
BannerPrinter.print_banner_text
Menu.display_menu