tsykvas_rails_template 0.1.0 → 0.1.1
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 +16 -2
- data/lib/tsykvas_rails_template/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9dad215d2f2de72c3984aa46f6247743090dbf7079341fb73964973bce38adc
|
|
4
|
+
data.tar.gz: 8dfe0b8e341a8b37a6471ce90052dc26275d749af1215e30c312c692c4f200c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa716feaa74f2dba18f54fc3d568aaf58dbdec0acb9f8fa7ef209e41ffcfe9afbceb73835d7230a75b983a5c3ebea7064f6ba8cc776d2c2d0b793d1e704dc9ca
|
|
7
|
+
data.tar.gz: 8388002ec8ff064fbf6593dc600f67cd3e1de3d61505ca385fac9a2c8fec10aa9621078893e7592668343a09977373fe57bd35cb20bb39603a592426e2435bcd
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,8 @@ project follows [SemVer](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.1] - 2026-05-08
|
|
10
|
+
|
|
9
11
|
### Changed (post real-world test 2026-05-08)
|
|
10
12
|
|
|
11
13
|
- **All 20 architecture docs now ship at install** (previously only the 3
|
|
@@ -41,6 +43,17 @@ project follows [SemVer](https://semver.org/).
|
|
|
41
43
|
- **Install no longer overwrites an existing `CLAUDE.md`.** Skips with a
|
|
42
44
|
yellow warning suggesting `/tsykvas-claude`. Supports the
|
|
43
45
|
`claude init` → install gem → reinit workflow.
|
|
46
|
+
- **CI smoke job now runs `bundle install` after the first `:companions`
|
|
47
|
+
invocation** (dropped `--skip-bundle`) so subsequent `bin/rails g` calls
|
|
48
|
+
can boot Rails. Without this, `Bundler.setup` failed on the stale
|
|
49
|
+
`Gemfile.lock` (devise / simple_form / etc. listed in Gemfile but not
|
|
50
|
+
installed).
|
|
51
|
+
- **CI test for concept-generator input validation** now grep stdout for
|
|
52
|
+
the expected validation message instead of relying on exit code.
|
|
53
|
+
`bin/rails g` swallows `Thor::Error` exit codes (Rails generators print
|
|
54
|
+
the message but exit `0`), so the previous "expect non-zero on bad
|
|
55
|
+
input" check inverted its own logic and reported the success branch
|
|
56
|
+
every time.
|
|
44
57
|
|
|
45
58
|
### Changed
|
|
46
59
|
|
|
@@ -196,5 +209,6 @@ Initial public release.
|
|
|
196
209
|
- CI smoke job: generates a fresh Rails app, installs the gem from path, runs
|
|
197
210
|
both generators, verifies idempotency, runs `bin/rails zeitwerk:check`.
|
|
198
211
|
|
|
199
|
-
[Unreleased]: https://github.com/tsykvas/
|
|
200
|
-
[0.1.
|
|
212
|
+
[Unreleased]: https://github.com/ytsykvas/tsykvas-rails-template/compare/v0.1.1...HEAD
|
|
213
|
+
[0.1.1]: https://github.com/ytsykvas/tsykvas-rails-template/compare/v0.1.0...v0.1.1
|
|
214
|
+
[0.1.0]: https://github.com/ytsykvas/tsykvas-rails-template/releases/tag/v0.1.0
|