gemkeeper 0.6.3 → 0.6.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 +10 -1
- data/lib/gemkeeper/rackup_process.rb +3 -1
- data/lib/gemkeeper/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: 4cf7b65729b5846211f8e44608b822f658be02c0c9b793357818de209584a17e
|
|
4
|
+
data.tar.gz: 85252b12623ec17209ccd145f72f7ee17962e7dc5a9102f77770086fa554a309
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9548771a4c6a650021e4171412be4266b50a04d3330aeb3e823ed41d6b2abaa70cc337bb006fa29ba83de45c78184add34c716d95aab5092824f7c347fb23008
|
|
7
|
+
data.tar.gz: e860fcd9b300a5b74b9c87753e395336f5e6f67dca1017e9b69f587d06e26b53d15478391dec9e8566e6e839f772dbaae35ee5cbc0353df76ec6f95e6a40b33f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.6.4] - 2026-05-28
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- `gemkeeper server start --foreground` now exits non-zero when rackup fails (e.g., port already in use).
|
|
8
|
+
Previously a rackup crash returned exit 0, causing launchd to respawn immediately in a tight loop with no visible error.
|
|
9
|
+
The failure reason is now logged and the process exits 1, giving launchd an accurate status and making the cause diagnosable via `brew services info`.
|
|
10
|
+
|
|
3
11
|
## [0.6.3] - 2026-05-28
|
|
4
12
|
|
|
5
13
|
### Fixed
|
|
@@ -106,7 +114,8 @@
|
|
|
106
114
|
|
|
107
115
|
- Initial release
|
|
108
116
|
|
|
109
|
-
[Unreleased]: https://github.com/danhorst/gemkeeper/compare/v0.6.
|
|
117
|
+
[Unreleased]: https://github.com/danhorst/gemkeeper/compare/v0.6.4...HEAD
|
|
118
|
+
[0.6.4]: https://github.com/danhorst/gemkeeper/compare/0.6.3...0.6.4
|
|
110
119
|
[0.6.3]: https://github.com/danhorst/gemkeeper/compare/0.6.2...0.6.3
|
|
111
120
|
[0.6.2]: https://github.com/danhorst/gemkeeper/compare/0.6.1...0.6.2
|
|
112
121
|
[0.6.1]: https://github.com/danhorst/gemkeeper/compare/0.6.0...0.6.1
|
|
@@ -19,7 +19,9 @@ module Gemkeeper
|
|
|
19
19
|
|
|
20
20
|
def start_foreground
|
|
21
21
|
generate_config_ru
|
|
22
|
-
Dir.chdir(@config.cache_dir)
|
|
22
|
+
Dir.chdir(@config.cache_dir) do
|
|
23
|
+
system(*build_rackup_cmd) || raise(ServerError, "rackup exited with status #{$CHILD_STATUS.exitstatus}")
|
|
24
|
+
end
|
|
23
25
|
end
|
|
24
26
|
|
|
25
27
|
private
|
data/lib/gemkeeper/version.rb
CHANGED