syntropy 0.34.3 → 0.34.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: 52276124c5e8483f1b2eef9c9e7b4a12f3c107fe371591d6a1ff694220159c40
4
- data.tar.gz: 214c9e83993a057b9f4c08925d7da82df924cfb9d81323e6d847356fbbb34252
3
+ metadata.gz: 6db3fba37a6c6dbc673424d2f68a83164b5a802e569862cfc6757aa128b454a2
4
+ data.tar.gz: c447710a87fd8c9833e6a677488c6be8cdc441fa5f0e5aa1729c223316e0af54
5
5
  SHA512:
6
- metadata.gz: 6d4f73168a366faabd12a5c2d9e70c54006a42830c2b9d6fbf59200c9b937518b408e0a1e171248ffd3e6bd6660dce1977e8462c4057e85ba6bb9cf94df9fccb
7
- data.tar.gz: 1fd46b9eed9ddd22abe5c2821c2523d22b916e79e8d8396c7cb4fcf92df0687cb37b6d9bccdf508274ca40f22177e45e3b8a02eeb2abebc3f5046a5d537bb711
6
+ metadata.gz: 3858b134e15456c71cfd2639c588c98014837aa5a695f1c32a5f1bd4438d4da3a3c82fd9a4e9955396e6827e3e6d49f95ec5116b3ccce77cf856173b7ef0c746
7
+ data.tar.gz: 86297d5dc498b1130f66039e3792ea06bc51848f66002c231af13b38e2efa6c2f3f274ac3a22c9b3f8172a9e72c6b1f3ebabcb7fb296c2eb6792bee03659a98d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.34.4 2026-06-03
2
+
3
+ - Really fix running test in watch mode with docker compose
4
+
1
5
  # 0.34.3 2026-06-03
2
6
 
3
7
  - Fix running tests in watch mode with docker compose
data/cmd/test.rb CHANGED
@@ -85,7 +85,6 @@ $stderr.sync = true
85
85
  Dir.glob("#{File.expand_path(env[:test_root])}/test_*.rb").each { require(it) }
86
86
 
87
87
  def restart_on_file_change(machine, dir, restart_argv)
88
-
89
88
  machine.file_watch(dir, UM::IN_CREATE | UM::IN_DELETE | UM::IN_CLOSE_WRITE) {
90
89
  machine.write(UM::STDOUT_FILENO, "File changed: #{it[:fn]}\n")
91
90
  break
@@ -101,7 +100,7 @@ if env[:watch_mode]
101
100
  m.write(UM::STDOUT_FILENO, "\n")
102
101
  trap('SIGINT') { m.write(UM::STDOUT_FILENO, "\n"); exit! }
103
102
 
104
- machine.write(UM::STDOUT_FILENO, "Waiting for file changes...\n")
103
+ m.write(UM::STDOUT_FILENO, "Waiting for file changes...\n")
105
104
  m.join(
106
105
  m.spin { restart_on_file_change(m, env[:app_root], argv_copy) },
107
106
  m.spin { restart_on_file_change(m, env[:test_root], argv_copy) }
@@ -1,3 +1,3 @@
1
1
  source 'https://gem.coop'
2
2
 
3
- gem 'syntropy', '~>0.34.2'
3
+ gem 'syntropy', '~>0.34.3'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Syntropy
4
- VERSION = '0.34.3'
4
+ VERSION = '0.34.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: syntropy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.3
4
+ version: 0.34.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sharon Rosner