Skip to content

Commit 6f45c1a

Browse files
committed
Standardize workspace: Capitalize Justfile references in scripts and docs
1 parent e1fbea6 commit 6f45c1a

12 files changed

Lines changed: 32 additions & 32 deletions

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ conative-gating/
4242
├── README.adoc
4343
├── SECURITY.md
4444
├── flake.nix # Nix flake (Perimeter 1)
45-
└── justfile # Task runner (Perimeter 1)
45+
└── Justfile # Task runner (Perimeter 1)
4646
```
4747
4848
---

RSR_OUTLINE.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This repository provides the standardized structure, configuration, and tooling
1717

1818
* Bootstrap new projects with RSR compliance
1919
* Reference the standard directory structure
20-
* Copy configuration templates (justfile, STATE.scm, etc.)
20+
* Copy configuration templates (Justfile, STATE.scm, etc.)
2121

2222
== Quick Start
2323

@@ -32,7 +32,7 @@ rm -rf .git
3232
git init
3333
3434
# Customize
35-
sed -i 's/RSR-template-repo/my-project/g' justfile guix.scm README.adoc
35+
sed -i 's/RSR-template-repo/my-project/g' Justfile guix.scm README.adoc
3636
3737
# Enter development environment
3838
guix shell -D -f guix.scm
@@ -83,7 +83,7 @@ just validate-rsr
8383

8484
== Justfile Features
8585

86-
The template justfile provides:
86+
The template Justfile provides:
8787

8888
* **~10 billion recipe combinations** via matrix recipes
8989
* **Cookbook generation**: `just cookbook` → `docs/just-cookbook.adoc`
@@ -109,7 +109,7 @@ just ci # Full CI pipeline
109109
110110
just validate # RSR + STATE validation
111111
just docs # Generate all docs
112-
just cookbook # Generate justfile docs
112+
just cookbook # Generate Justfile docs
113113
114114
just guix-shell # Guix dev environment
115115
just container-build # Build container
@@ -133,7 +133,7 @@ project/
133133
│ ├── man/
134134
│ └── just-cookbook.adoc
135135
├── guix.scm # Guix package
136-
├── justfile # Task runner
136+
├── Justfile # Task runner
137137
├── LICENSE.txt # Dual license
138138
├── README.adoc # Overview
139139
├── RSR_COMPLIANCE.adoc # Compliance

docs/DIRECTORY_STRUCTURE.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project-name/
2323
├── config/ # Configuration files (if needed)
2424
├── docs/ # Documentation (required)
2525
├── guix.scm # Guix package definition (required)
26-
├── justfile # Task runner (required)
26+
├── Justfile # Task runner (required)
2727
├── LICENSE.txt # AGPL + Palimpsest dual license (required)
2828
├── README.adoc # Project overview (required)
2929
├── RSR_COMPLIANCE.adoc # Compliance tracking (required)
@@ -157,7 +157,7 @@ docs/
157157
├── ARCHITECTURE.adoc # Technical design (optional)
158158
├── CONTRIBUTING.adoc # Contribution guide
159159
├── GOVERNANCE.adoc # Decision-making process
160-
├── just-cookbook.adoc # Auto-generated justfile docs
160+
├── just-cookbook.adoc # Auto-generated Justfile docs
161161
├── BADGE_SCHEMA.adoc # Badge documentation
162162
└── security/
163163
├── sbom.spdx.json # SPDX SBOM
@@ -371,7 +371,7 @@ To apply this structure to a new or existing repo:
371371
# From conative-gating/scripts
372372
./apply-directory-structure.sh /path/to/repo
373373
374-
# Or via justfile
374+
# Or via Justfile
375375
just setup-structure
376376
----
377377

docs/GRIMREPO_SCRIPTS.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,15 +599,15 @@ grimrepo-scripts/
599599
│ └── ...
600600
├── rescript.json
601601
├── deno.json
602-
├── justfile
602+
├── Justfile
603603
└── STATE.scm
604604
----
605605

606606
=== Justfile
607607

608608
[source,makefile]
609609
----
610-
# grimrepo-scripts justfile
610+
# grimrepo-scripts Justfile
611611
612612
default: build
613613

docs/REPO_CONSISTENCY.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ RSR projects are distributed across GitHub and GitLab. This guide documents the
166166

167167
|Content
168168
|extension/, slm/, ui/, manifest.json
169-
|Just .well-known/, justfile
169+
|Just .well-known/, Justfile
170170

171171
|Use Case
172172
|Building real Zotero extensions
@@ -214,7 +214,7 @@ Root files:
214214
├── CITATION.cff # Citation metadata
215215
├── STATE.scm # Guile state checkpoint
216216
├── codemeta.json # CodeMeta metadata
217-
└── justfile # Build automation
217+
└── Justfile # Build automation
218218
----
219219

220220
=== Platform-Specific Files
@@ -412,7 +412,7 @@ fi
412412

413413
== Justfile Recipe
414414

415-
Add to each repository's justfile:
415+
Add to each repository's Justfile:
416416

417417
[source,makefile]
418418
----

docs/REPO_VARIATIONS.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ end
9898

9999
=== CI/CD Variations
100100

101-
==== justfile Recipes (Language-Specific)
101+
==== Justfile Recipes (Language-Specific)
102102

103103
[cols="1,3"]
104104
|===

docs/VSH_IMPROVEMENTS.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ just --show build
572572
[source,bash]
573573
----
574574
# Parse Justfile into vsh functions
575-
source justfile
575+
source Justfile
576576
577577
# Now recipes are available as functions
578578
build
@@ -614,7 +614,7 @@ just --watch test
614614

615615
[source,bash]
616616
----
617-
# Native vsh justfile syntax
617+
# Native vsh Justfile syntax
618618
recipe build {
619619
cargo build --release
620620
}
@@ -643,13 +643,13 @@ recipe build {
643643
[source,bash]
644644
----
645645
# Convert Justfile to native vsh
646-
just2vsh convert justfile > recipes.vsh
646+
just2vsh convert Justfile > recipes.vsh
647647
648648
# Validate conversion
649-
just2vsh validate justfile
649+
just2vsh validate Justfile
650650
651651
# Diff original vs converted
652-
just2vsh diff justfile recipes.vsh
652+
just2vsh diff Justfile recipes.vsh
653653
----
654654

655655
== Implementation Priority

docs/ZOTERHO_INTEGRATION.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ zoterho-template/
506506
│ ├── build-manifest.scm
507507
│ └── migrate-cue.scm
508508
├── STATE.scm
509-
├── justfile
509+
├── Justfile
510510
├── rescript.json
511511
├── deno.json
512512
└── README.adoc

scripts/apply-common-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ ACTIONEOF
200200
action_count=0
201201
[ "$ec_check" = "" ] && echo "* Add .editorconfig" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
202202
[ "$wk_check" = "" ] && echo "* Add .well-known/ directory" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
203-
[ "$jf_check" = "" ] && echo "* Add justfile" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
203+
[ "$jf_check" = "" ] && echo "* Add Justfile" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
204204
[ "$cont_check" = "" ] && echo "* Add Containerfile" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
205205
[ "$flake_check" = "" ] && echo "* Add flake.nix" >> "$repo/RSR_COMPLIANCE.adoc" && ((action_count++)) || true
206206
[ "$action_count" -eq 0 ] && echo "None - fully compliant" >> "$repo/RSR_COMPLIANCE.adoc"

scripts/apply-justfiles.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Apply language-specific justfiles to repos
2+
# Apply language-specific Justfiles to repos
33
# Usage: ./apply-justfiles.sh [--dry-run]
44

55
set -e
@@ -363,13 +363,13 @@ for repo in */; do
363363
name="${repo%/}"
364364
[ "$name" = "conative-gating" ] && continue
365365

366-
# Skip if justfile exists (file or directory)
366+
# Skip if Justfile exists (file or directory)
367367
[ -e "$repo/justfile" ] && continue
368368

369369
lang=$(detect_language "$repo")
370370

371371
if $DRY_RUN; then
372-
log "[DRY] Would add justfile to $name ($lang)"
372+
log "[DRY] Would add Justfile to $name ($lang)"
373373
((added++)) || true
374374
continue
375375
fi
@@ -395,7 +395,7 @@ for repo in */; do
395395
;;
396396
esac
397397

398-
log "Added justfile to $name ($lang)"
398+
log "Added Justfile to $name ($lang)"
399399
((added++)) || true
400400
done
401401

0 commit comments

Comments
 (0)