bundler-spinel 0.2.0 → 0.2.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 +13 -0
- data/lib/bundler/spinel/engine_installer.rb +6 -0
- data/lib/bundler/spinel/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: b5a1d4be2ef6216a5cd1241e7ef27dd6ee5222f79f21e6924b8c52c0fe02f35b
|
|
4
|
+
data.tar.gz: 0a36f37f19a5333e42515a23ec80524ee99bd2d81322e573bb7b3376b4a231b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9fd87e3769ca2246b536ef82c4e6c5c6a704021183008516ce7b41ebf10f0e310d03e297b06887c86cb9f97dc8ae388c6f45f01ce92f1a1a7af791763af0af9
|
|
7
|
+
data.tar.gz: '0894f3ed497a5b7c2e226d5ec5b86ce8b60872775d12c72090df8a6da3f8eead78a93b8ced7e994769e0359a48850be22526192683351a1b16dfe49714744013'
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to `bundler-spinel` are documented here. The format
|
|
|
4
4
|
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the
|
|
5
5
|
project aims to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.2.1] — 2026-06-01
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **`init` scaffold tripped `mise`/`asdf` on the engine marker.** Version managers
|
|
11
|
+
read the Gemfile's `ruby "3.3.0", engine: "spinel", …` and tried to activate
|
|
12
|
+
`ruby@spinel-0.0.0` (missing) → fell back to a Ruby without `bundler-spinel`, so
|
|
13
|
+
`bin/build` failed with `spinel-compat: command not found` (first-user report,
|
|
14
|
+
tep#156). The scaffold now also writes a config-tier `.tool-versions` pinning the
|
|
15
|
+
real CRuby (`ruby <RUBY_VERSION>`), which overrides the Gemfile parse so the
|
|
16
|
+
manager activates the Ruby that has `spinel-compat`. Reproduced + verified the
|
|
17
|
+
fix against `mise` in a container.
|
|
18
|
+
|
|
7
19
|
## [0.2.0] — 2026-06-01
|
|
8
20
|
|
|
9
21
|
### Added
|
|
@@ -98,6 +110,7 @@ and the ledger format may all change before `0.0.1`. Install with `--pre`.
|
|
|
98
110
|
- Wholesale `survey` with a thread-safe ledger, a per-compile wall-clock
|
|
99
111
|
timeout (`analyze-timeout` reject reason), and a ledger-based report.
|
|
100
112
|
|
|
113
|
+
[0.2.1]: https://github.com/OriPekelman/spinelgems/releases/tag/v0.2.1
|
|
101
114
|
[0.2.0]: https://github.com/OriPekelman/spinelgems/releases/tag/v0.2.0
|
|
102
115
|
[0.1.1]: https://github.com/OriPekelman/spinelgems/releases/tag/v0.1.1
|
|
103
116
|
[0.1.0]: https://github.com/OriPekelman/spinelgems/releases/tag/v0.1.0
|
|
@@ -172,6 +172,12 @@ module Bundler
|
|
|
172
172
|
write(out, bin, build_sh)
|
|
173
173
|
File.chmod(0o755, bin)
|
|
174
174
|
write(out, File.join(dir, ".gitignore"), gitignore)
|
|
175
|
+
# Pin the *real* CRuby (the one running this, which has spinel-compat) so
|
|
176
|
+
# version managers don't misread the Gemfile's `engine: "spinel"` marker.
|
|
177
|
+
# mise/asdf parse that as `ruby@spinel-0.0.0`, fail to find it, and fall
|
|
178
|
+
# back to a Ruby without bundler-spinel — `bin/build` then can't find
|
|
179
|
+
# `spinel-compat`. A config-tier .tool-versions overrides that parse.
|
|
180
|
+
write(out, File.join(dir, ".tool-versions"), "ruby #{RUBY_VERSION}\n")
|
|
175
181
|
out.puts ""
|
|
176
182
|
out.puts "Scaffolded a Spinel + Tep project in #{dir}/"
|
|
177
183
|
out.puts "Next:"
|