Skip to content

Commit fb8ef90

Browse files
author
Jonathan D.A. Jewell
committed
refactor: Rename project to 'modshells' for conciseness and update GNAT project file (Rhodium Standard).
1 parent b29bad0 commit fb8ef90

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.gitlab-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stages:
1010

1111
variables:
1212
# The GNAT Project File used for all operations
13-
GPR_PROJECT: modular_shells.gpr
13+
GPR_PROJECT: modshells.gpr
1414

1515
# --- Stage: Verify (Syntax and Static Analysis) ---
1616

@@ -29,7 +29,7 @@ test:unit:
2929
script:
3030
- echo "Running AUnit tests (Stub)"
3131
# A full pipeline would use a dedicated test GPR file.
32-
- gprbuild -P $GPR_PROJECT src/main/modular_shells.adb
32+
- gprbuild -P $GPR_PROJECT src/main/modshells.adb
3333
# Placeholder to ensure test stage passes for v0.0
3434
- echo "Unit tests successful."
3535

@@ -40,7 +40,7 @@ build:linux:amd64:
4040
script:
4141
- echo "Building for Linux/Fedora (Primary Target)"
4242
- gprbuild -P $GPR_PROJECT
43-
- mv bin/modular_shells modular_shells_linux_amd64
43+
- mv bin/modular_shells modshells_linux_amd64
4444
artifacts:
4545
paths:
46-
- modular_shells_linux_amd64
46+
- modshells_linux_amd64
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
-- GNAT Project File for Modular Shells Utility
2-
project Modular_Shells is
2+
project Modshells is
33

44
for Source_Dirs use ("src/main", "src/config_store", "src/shell_manager", "src/utils");
55
for Object_Dir use "obj";
66
for Exec_Dir use "bin";
7-
for Main use ("modular_shells.adb");
7+
for Main use ("modshells.adb");
88

99
-- Define LMDB as a required external library
1010
package Linker is
@@ -20,4 +20,4 @@ project Modular_Shells is
2020
for Default_Switches ("ada") use ("-gnatws", "-gnatV", "-gnatyabcefhiklprnsu", "-gnata", "-fstack-check");
2121
end Compiler;
2222

23-
end Modular_Shells;
23+
end Modshells;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ with Shell_Manager;
44
use Ada.Text_IO;
55
use Shell_Manager;
66

7-
procedure Modular_Shells is
7+
procedure Modshells is
88
-- Placeholders for the main execution loop (v0.0)
99
Shells : Shell_List := Detect_Shells;
1010
begin
11-
Put_Line("Modular Shells Utility (v0.0) - Safety First.");
11+
Put_Line("Modshells Utility (v0.0) - Safety First.");
1212
Put_Line("Detected Shells:");
1313

1414
for I in Shells'Range loop
@@ -18,4 +18,4 @@ begin
1818
-- NOTE: Full installation and modularisation logic will be implemented here in v0.1
1919
-- The system currently only lists and confirms the safety framework.
2020

21-
end Modular_Shells;
21+
end Modshells;

0 commit comments

Comments
 (0)