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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87d6e8b4242f1867bde77359c546b70a17a450a7f1a96eced35e623c163c7aea
4
- data.tar.gz: 63e9fffd01e0c84346eb4fcc13c3165346434b1ed3193634ce7b6e2b6e95c265
3
+ metadata.gz: 4cf7b65729b5846211f8e44608b822f658be02c0c9b793357818de209584a17e
4
+ data.tar.gz: 85252b12623ec17209ccd145f72f7ee17962e7dc5a9102f77770086fa554a309
5
5
  SHA512:
6
- metadata.gz: 9d4f878b6be462164fa07a89462056545a21b07bc3e01cb12c332d4b19a074a6694592505b6ff646679335fd0f3a480eabd8659f170dc82b0b5ece3d42bff62c
7
- data.tar.gz: 1219a7740e4d0659c52a9c16291f63b5638437ecd435a4531bafe91f3740464451156727d84d757db74eb2f9c81709f5c726e80b42146cf7531025993d669646
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.3...HEAD
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) { system(*build_rackup_cmd) }
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemkeeper
4
- VERSION = "0.6.3"
4
+ VERSION = "0.6.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemkeeper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Brubaker Horst