archgate 0.41.1 → 0.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -44
  3. data/lib/archgate/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a01254d058877df2386a219c1b28ea164e4199c45b7ec81095482ef94400c37
4
- data.tar.gz: 8df0c47cbe4ecee345c4712d9197a153ecb9d33b21642968bb22694ab3f57eac
3
+ metadata.gz: 521c4427d6b43897cb9063fd088434bf58504cf6aee78c780b3576901156c7e5
4
+ data.tar.gz: 97ce1a81b25b05598cc3241d42c1b28b461c595348bbddd1279662dabd0e0fbf
5
5
  SHA512:
6
- metadata.gz: ef0949bb00599807c1ebb41b81fd053eb71037f4144cec384eede619eb6ccaf062a9973f3f51b2e4c89d87e5757571325b927a0ff573ff113c260e8eb85d795b
7
- data.tar.gz: 6f07d37a20a8bc3ceac31afeefb27e00523e873f888cf5708b19053e6e1fe5ded95cb3cb92a00681e3db8bd6254ed1bde11a8ad1565a67220ca269e95da93c10
6
+ metadata.gz: c16d592a9207492c854522dc66c885c8e3ad358dd8064b35cd6cd69ecc4f4f928e16bc42fd194a1daad60ea5d0a1e68a6e6d5d9d5335a4661899014412e0b0a1
7
+ data.tar.gz: 5add2190c51a04b7c18c117923393b026e8deb2e44f0e8800a0a972f310a7c95b482ba18ecbf493e9810c90262d099fca000a2f16c5067319e6c14ca5710bdaf
data/README.md CHANGED
@@ -39,61 +39,22 @@ When a rule is violated, `archgate check` reports the file, line, and which ADR
39
39
 
40
40
  ## Installation
41
41
 
42
- **Standalone** (no Node.js required):
43
-
44
- ```bash
45
- # macOS / Linux
46
- curl -fsSL https://cli.archgate.dev/install-unix | sh
47
-
48
- # Windows (PowerShell)
49
- irm https://cli.archgate.dev/install-windows | iex
50
-
51
- # Windows (Git Bash / MSYS2)
52
- curl -fsSL https://cli.archgate.dev/install-unix | sh
53
- ```
54
-
55
- **Via npm** (or any Node.js package manager):
56
-
57
- ```bash
58
- # npm
59
- npm install -g archgate
60
-
61
- # Bun
62
- bun install -g archgate
63
-
64
- # Yarn
65
- yarn global add archgate
66
-
67
- # pnpm
68
- pnpm add -g archgate
69
- ```
70
-
71
- You can also install as a dev dependency:
72
-
73
- ```bash
74
- npm install -D archgate # or: bun add -d archgate
75
- npx archgate check # run via package manager
76
- ```
77
-
78
- **Requirements:** macOS (arm64), Linux (x86_64), or Windows (x86_64). See the [installation guide](https://cli.archgate.dev/getting-started/installation/) for more options.
42
+ Install via standalone script, npm, pip, dotnet, Go, gem, Maven, or proto. See the **[installation guide](https://cli.archgate.dev/getting-started/installation/)** for all options and platform support.
79
43
 
80
44
  ## Quick start
81
45
 
82
46
  ```bash
83
- # 1. Install
84
- curl -fsSL https://cli.archgate.dev/install-unix | sh # or: npm install -g archgate
85
-
86
- # 2. Initialize governance in your project
47
+ # 1. Initialize governance in your project
87
48
  cd my-project
88
49
  archgate init
89
50
 
90
- # 3. Edit the generated ADR to document a real decision
51
+ # 2. Edit the generated ADR to document a real decision
91
52
  # .archgate/adrs/ARCH-001-*.md
92
53
 
93
- # 4. Add a companion .rules.ts to enforce it automatically
54
+ # 3. Add a companion .rules.ts to enforce it automatically
94
55
  # .archgate/adrs/ARCH-001-*.rules.ts
95
56
 
96
- # 5. Run checks
57
+ # 4. Run checks
97
58
  archgate check
98
59
  ```
99
60
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Archgate
4
- VERSION = "0.41.1"
4
+ VERSION = "0.42.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: archgate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.1
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Archgate