enola-rb 0.5.2 → 0.5.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e11fd621c0938e8bf47d4fb4601db8dc659039437b1b10331babdc335e651810
4
- data.tar.gz: e03a1e9510a0694f4e0a8f2f099b60642ab9207fd9752c1c098db15e75bb854a
3
+ metadata.gz: 21a0b2da8eadd5dab80d8bc5c984f8c25dbe25f0831ce95f6862727cfda0fe60
4
+ data.tar.gz: c4e5b90c53c0cf85533bef512987311e0676dc45a9de91f96d4a605360070fe8
5
5
  SHA512:
6
- metadata.gz: 1dc77e4c5836a844d95dfea1118440efe3e861f2b3f20d938c9a0c312ae44f9fedc5e2b3e38fe3e0fdec4d07ec00c2fd881211ef485bfd7a19e8769ebaa95fbb
7
- data.tar.gz: 4603af7245ee31b60fbce69619298235b9a167a03042632dd82fcec2faabc922e034b08ad2aeab048af32f396c016e24ba660873293d2ce4212def58dba7b5cd
6
+ metadata.gz: 9c2230831992ef3d41403c0c4feba1bfd04d2a06f8406c6afdb3db91a43dd699f244b100b7ff0f189b9df5b744e3b77fd2890c96ccea020e791725294baf138d
7
+ data.tar.gz: 020f83092617474cbaae18711b950e9ceb4beeebd1b37dfdb6b4d4f5fc8586a928c19b09c96dfcdd176d7a78d4a8d1756d6811808795fb39ddea847286bd2fe0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## enola 0.5.3, enola-rb 0.5.3 and munola 0.6.0 (2026-08-24)
2
+
3
+ Both providers are on again. enola-labs shipped the prefix walk fix in 0.4.6,
4
+ which is the release the enola and enola-rb gems now drive, so the config they
5
+ write carries Prism and Rubydex as it did before the hang was found.
6
+
7
+ munola waits. Its binary is a fork release cut before that fix, so it stays on
8
+ Prism alone until the channel is re-cut, and its version file says which
9
+ upstream it is built on rather than implying the newest.
10
+
11
+ munola-rb is gone, and was never published. The railtie and generator move
12
+ into munola, which is why munola is 0.6.0: one gem for one channel, since the
13
+ split that makes sense for enola and enola-rb, letting a Rubyist take the
14
+ binary wrapper without the Rails layer, does not describe anyone's use of
15
+ munola. Requiring munola still loads no Rails; the generator registers when
16
+ the application has already loaded it.
17
+
1
18
  ## enola 0.5.2, enola-rb 0.5.2, munola 0.5.2 and munola-rb 0.5.2 (2026-08-23)
2
19
 
3
20
  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, the same layering on both: `enola` wraps the released upstream
8
- binary and `enola-rb` adds the Rails layer on it; `munola` wraps the munola
9
- binary and `munola-rb` adds the Rails layer on that. The Rails code is written
10
- once, in `enola-rb`, and the munola gems add only what is munola's own.
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
- ## `munola-rb`
113
+ ## munola under Rails
113
114
 
114
- The Rails layer over `munola`, what `enola-rb` is to `enola`. It depends on
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. The rake tasks are
128
- enola-rb's and need no munola copy: `munola` installs its own resolver when it
129
- loads, so `enola:snapshot` and `enola:check` drive the munola binary in an app
130
- that has this gem, and the upstream binary in one that does not.
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EnolaRb
4
- VERSION = "0.5.2"
4
+ VERSION = "0.5.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enola-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muhamed Isabegovic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-23 00:00:00.000000000 Z
11
+ date: 2026-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enola
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.5.0
19
+ version: 0.5.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.5.0
26
+ version: 0.5.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: enola-guides
29
29
  requirement: !ruby/object:Gem::Requirement