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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af81aed735e8260a376bbce78cfc516ee01f822acd2965632edc280edee0c21d
4
- data.tar.gz: b974e65b8d5e5b3e3efc7dc1a75548ab7c7da70412199b7dd7d167c919f7fb7b
3
+ metadata.gz: c9dad215d2f2de72c3984aa46f6247743090dbf7079341fb73964973bce38adc
4
+ data.tar.gz: 8dfe0b8e341a8b37a6471ce90052dc26275d749af1215e30c312c692c4f200c3
5
5
  SHA512:
6
- metadata.gz: 8e9919be27dd8bb20d9f30ea6e4a1dd9c0f4262ebd5bb3b99153af43822835501c405fa035dce98c8f3d26d5834efdcc8cc61be75a238842485918642098df1d
7
- data.tar.gz: ecc78df86e7554142d7f7f572d962678fe41943a2449bcfe2db681afef149ebb76fc914d27c2f327fd6d9cc38fc2f4441cf927068096c0e9818f0941416afbd6
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/tsykvas_rails_template/compare/v0.1.0...HEAD
200
- [0.1.0]: https://github.com/tsykvas/tsykvas_rails_template/releases/tag/v0.1.0
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TsykvasRailsTemplate
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tsykvas_rails_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yurii Tsykvas