enola 0.5.2 → 0.5.4
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/CHANGELOG.md +46 -0
- data/README.md +12 -15
- data/lib/enola/config.rb +5 -7
- data/lib/enola/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8765810bf2e4d590bbbba5be8636b967a32850c114c77062f122f352178f2efd
|
|
4
|
+
data.tar.gz: 3e5b6fcc384b5a4744be1f691fb219968f407b303e2b3220b2333e0c1e59840f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59ee62e4dce004b6828775875e6c68ed8821744ff47e69181a2d0dbdc0040d3ef46f0466b12b9bbd67fbffe7dc851de9bb3fae388f3a33c9680a51d1be630193
|
|
7
|
+
data.tar.gz: 327a5ccd99c2842900aaedf773e2d550a756447ffd8990dc883b46c6687922cdb02d45cbf709614d80658a6b957ad75f31dc41924684e75a6851f6a3a696994f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
## enola 0.5.4 and enola-rb 0.5.4 (2026-08-30)
|
|
2
|
+
|
|
3
|
+
The gems drive upstream enola 0.4.10. Between 0.4.6 and here upstream took the
|
|
4
|
+
exclusion filter (#255, in 0.4.7), rescored the layers explainer per language
|
|
5
|
+
cohort (0.4.7), began reading package manifests as dependency facts with a
|
|
6
|
+
declared-purpose diff (0.4.8), gave the dashboard its own command (0.4.9), and
|
|
7
|
+
documented the snapshot artifacts as a versioned contract with fact identity
|
|
8
|
+
(0.4.10). The vendored Prism provider script and the Rubydex engine pin are
|
|
9
|
+
byte-identical across the span, so nothing re-vendors; the wrappers move by
|
|
10
|
+
the release they name.
|
|
11
|
+
|
|
12
|
+
## munola 0.6.1 (2026-08-24)
|
|
13
|
+
|
|
14
|
+
munola drives channel release `0.4.6.1`, cut from the promoted current at
|
|
15
|
+
upstream enola 0.4.6. The prefix walk fix is in the binary this gem fetches,
|
|
16
|
+
so the expiry the 0.6.0 note named is met and Rubydex is on by default again.
|
|
17
|
+
The channel still carries the exclusion filter, which upstream merged an hour
|
|
18
|
+
after 0.4.6 was published, so an excluded document is skipped before its
|
|
19
|
+
definitions are read: 440 seconds to 193 on a Rails monolith, facts identical.
|
|
20
|
+
|
|
21
|
+
The 0.6.0 note said munola waits on Prism alone. On the Rails install path it
|
|
22
|
+
did not. `munola init` reuses enola-rb's installer, which writes
|
|
23
|
+
`mcp-arch.yaml` first, and munola's own writer yields to a file that already
|
|
24
|
+
exists, so the config every Rails project got was the enola gem's, with both
|
|
25
|
+
providers on, against a channel binary built before the fix. Two things follow.
|
|
26
|
+
The config and the binary now agree, which is what closes it. And munola's
|
|
27
|
+
writer has a test that reads munola's writer, rather than one that reads the
|
|
28
|
+
file enola-rb wrote and reports on munola.
|
|
29
|
+
|
|
30
|
+
## enola 0.5.3, enola-rb 0.5.3 and munola 0.6.0 (2026-08-24)
|
|
31
|
+
|
|
32
|
+
Both providers are on again. enola-labs shipped the prefix walk fix in 0.4.6,
|
|
33
|
+
which is the release the enola and enola-rb gems now drive, so the config they
|
|
34
|
+
write carries Prism and Rubydex as it did before the hang was found.
|
|
35
|
+
|
|
36
|
+
munola waits. Its binary is a fork release cut before that fix, so it stays on
|
|
37
|
+
Prism alone until the channel is re-cut, and its version file says which
|
|
38
|
+
upstream it is built on rather than implying the newest.
|
|
39
|
+
|
|
40
|
+
munola-rb is gone, and was never published. The railtie and generator move
|
|
41
|
+
into munola, which is why munola is 0.6.0: one gem for one channel, since the
|
|
42
|
+
split that makes sense for enola and enola-rb, letting a Rubyist take the
|
|
43
|
+
binary wrapper without the Rails layer, does not describe anyone's use of
|
|
44
|
+
munola. Requiring munola still loads no Rails; the generator registers when
|
|
45
|
+
the application has already loaded it.
|
|
46
|
+
|
|
1
47
|
## enola 0.5.2, enola-rb 0.5.2, munola 0.5.2 and munola-rb 0.5.2 (2026-08-23)
|
|
2
48
|
|
|
3
49
|
Rubydex is off in the config these gems write, and named in a comment beside
|
data/README.md
CHANGED
|
@@ -4,10 +4,11 @@ Four pure-Ruby gems, one repository, for running
|
|
|
4
4
|
[enola](https://github.com/enola-labs/enola), the architecture-graph tool,
|
|
5
5
|
from Ruby. None of them carries a binary or compiles anything.
|
|
6
6
|
|
|
7
|
-
Two channels
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
Two channels. `enola` wraps the released upstream binary and `enola-rb` adds
|
|
8
|
+
the Rails layer on it, split so a Rubyist can take the wrapper without Rails.
|
|
9
|
+
`munola` is one gem for its own channel, wrapper and Rails layer together,
|
|
10
|
+
because nobody installs it to avoid Rails. The Rails code is written once, in
|
|
11
|
+
`enola-rb`, and munola adds only what is munola's own.
|
|
11
12
|
|
|
12
13
|
## `enola`
|
|
13
14
|
|
|
@@ -109,14 +110,9 @@ publishes; `MUNOLA_BINARY=/path/to/enola` names one to drive instead, and
|
|
|
109
110
|
every command says which answered. `munola` depends on `enola` at the same
|
|
110
111
|
minor and on `enola-guides` 0.3.1 or later; requiring it loads no Rails.
|
|
111
112
|
|
|
112
|
-
##
|
|
113
|
+
## munola under Rails
|
|
113
114
|
|
|
114
|
-
|
|
115
|
-
both at the same minor and adds one generator.
|
|
116
|
-
|
|
117
|
-
```ruby
|
|
118
|
-
gem "munola-rb"
|
|
119
|
-
```
|
|
115
|
+
munola carries its own generator, and the rake tasks are enola-rb's:
|
|
120
116
|
|
|
121
117
|
```sh
|
|
122
118
|
bin/rails generate munola:install --tenant-column company_id
|
|
@@ -124,7 +120,8 @@ bin/rake enola:snapshot
|
|
|
124
120
|
bin/rake enola:check
|
|
125
121
|
```
|
|
126
122
|
|
|
127
|
-
The generator runs the same install `munola init` does.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
123
|
+
The generator runs the same install `munola init` does. `munola` installs its
|
|
124
|
+
own resolver when it loads, so `enola:snapshot` and `enola:check` drive the
|
|
125
|
+
munola binary in an app that has this gem, and the upstream binary in one that
|
|
126
|
+
does not. Requiring munola loads no Rails; the generator registers when the
|
|
127
|
+
application has already loaded it.
|
data/lib/enola/config.rb
CHANGED
|
@@ -20,11 +20,9 @@ module Enola
|
|
|
20
20
|
|
|
21
21
|
def self.render(ruby: Providers.ruby)
|
|
22
22
|
<<~YAML
|
|
23
|
-
# Written by the enola gem; edit freely.
|
|
24
|
-
# under the Ruby that runs the gem
|
|
25
|
-
#
|
|
26
|
-
# gems, fixed but not yet in a published enola. Uncomment it to run it
|
|
27
|
-
# anyway, and expect a snapshot that may not finish.
|
|
23
|
+
# Written by the enola gem; edit freely. Both providers are on: Prism runs
|
|
24
|
+
# under the Ruby that runs the gem, Rubydex is built into the binary and
|
|
25
|
+
# fetched once. Remove one to leave it out of the graph.
|
|
28
26
|
repo: .
|
|
29
27
|
repos:
|
|
30
28
|
- .
|
|
@@ -34,8 +32,8 @@ module Enola
|
|
|
34
32
|
- name: prism
|
|
35
33
|
command: [#{ruby.inspect}, #{Providers.prism_script.inspect}]
|
|
36
34
|
expected_version: "#{Providers.prism_version || '0.1.0'}"
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
- name: rubydex
|
|
36
|
+
expected_version: "#{Providers::RUBYDEX_EXPECTED_VERSION}"
|
|
39
37
|
YAML
|
|
40
38
|
end
|
|
41
39
|
end
|
data/lib/enola/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: enola
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muhamed Isabegovic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: prism
|
|
@@ -27,7 +27,7 @@ dependencies:
|
|
|
27
27
|
description: |
|
|
28
28
|
A pure-Ruby wrapper around enola, the architecture-graph tool by enola-labs.
|
|
29
29
|
The gem versions itself; the enola release it drives is named in its
|
|
30
|
-
UPSTREAM_VERSION, 0.4.
|
|
30
|
+
UPSTREAM_VERSION, 0.4.10 here. The binary is not in the
|
|
31
31
|
gem: the first command that needs it downloads the release for your
|
|
32
32
|
platform, verifies it against the checksum the release publishes, and keeps
|
|
33
33
|
it in a per-user cache. Every command and exit code is forwarded unchanged.
|
|
@@ -81,5 +81,5 @@ rubygems_version: 3.5.22
|
|
|
81
81
|
signing_key:
|
|
82
82
|
specification_version: 4
|
|
83
83
|
summary: 'Runs the released enola from Ruby: fetched on first use, verified, cached.
|
|
84
|
-
This release drives enola 0.4.
|
|
84
|
+
This release drives enola 0.4.10.'
|
|
85
85
|
test_files: []
|