Skip to content

Commit 029a265

Browse files
authored
Merge pull request #706 from rails/synchronize
Bring back `Spring::Watcher::Abstract#synchronize`
2 parents 8b285d5 + c1facc5 commit 029a265

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Next Release
22

3+
* Bring back `Spring::Watcher::Abstract#synchronize` method to fix compatibility with `spring-watcher-listen`.
4+
35
## 4.1.2
46

57
* Drop dependency on `mutex_m`. Avoid issues with loading the wrong version before bundler kicks in.

lib/spring/watcher/abstract.rb

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ def initialize(root, latency)
2222
@on_debug = nil
2323
end
2424

25+
def synchronize(&block)
26+
# Used by some gems.
27+
@mutex.synchronize(&block)
28+
end
29+
2530
def on_debug(&block)
2631
@on_debug = block
2732
end

0 commit comments

Comments
 (0)