archspec 1.0.0.rc1 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +4 -3
- data/lib/archspec/architectures.rb +2 -1
- data/lib/archspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b50ec4f86cfdf9e4f95b1cf4a28c4dec212d711781675dedd6648f13aed7c1f
|
|
4
|
+
data.tar.gz: 9303aefb00b161004cc515b0d1b2ad03b3e60f396ef34b9dc86be4e7a1825650
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56bd81e5ee880404a80c7f29d498c58903bd8d087c5e8deb80af060d6d169c3b40e471eb09758500d6522516d83090b435b45ab243f780978539840b9548681e
|
|
7
|
+
data.tar.gz: a3dc2d41b6b97edd3ddacb8c84632c0b8ae81471c9132ec02ddbf66ce68d8dd916d068aeb366a8bed99f996ed6f81cda8a3a48b502459b0d25afc525d81df95d
|
data/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# ArchSpec
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Static analysis for your architecture. A linter for Ruby and Rails boundaries.
|
|
4
4
|
|
|
5
5
|
ArchSpec turns your application's architecture into executable checks. Declare
|
|
6
6
|
your components, dependencies, and boundaries in one file, then check every
|
|
7
|
-
change in CI, whether a person or a coding agent wrote it. It
|
|
8
|
-
with Prism
|
|
7
|
+
change in CI, whether a person or a coding agent wrote it. It is plain static
|
|
8
|
+
analysis: it reads Ruby source with Prism, never boots the app, and no AI is
|
|
9
|
+
involved in checking your code.
|
|
9
10
|
|
|
10
11
|
It maps conventional Rails files to constants and checks the structural rules
|
|
11
12
|
you write down: components, layers, constant references, inheritance, mixins,
|
|
@@ -36,7 +36,8 @@ module ArchSpec
|
|
|
36
36
|
# prefix), applied project-wide. Adds no components, so it composes with any
|
|
37
37
|
# other architecture. No options.
|
|
38
38
|
#
|
|
39
|
-
# See the guides
|
|
39
|
+
# See the {architecture guides}[https://archspecrb.dev/architectures/] for
|
|
40
|
+
# each preset in depth.
|
|
40
41
|
module Architectures
|
|
41
42
|
extend self
|
|
42
43
|
|
data/lib/archspec/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: archspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carmine Paolino
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: prism
|