watchcat 0.2.0-x86_64-linux → 0.2.1-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a025a1b4cbebf5a6c767d8172de3d9e0e181f6eee4010d9b4a6dcf42c5d4d4e
4
- data.tar.gz: 8441d5b0fb64a6e3ea62c3eec1e5b7acec7df240c99f2acb1bf9d23e3a8815c8
3
+ metadata.gz: b1a3d40bdf9a9bc7f37f4d09c48696ae7d284826c245838c4c265a4f58915d51
4
+ data.tar.gz: edbb2fea91f315f7248a86f29f751d7f35c0664a75fb57e783a060cadd723e3c
5
5
  SHA512:
6
- metadata.gz: 9e35ad32453e91584fcf0f1acea9fe56f6d4eb001666bcb9823ef754756582e18b25f663f88f9c1237a9777120b62d31cef763c815f10614fa85557fefabffd3
7
- data.tar.gz: '08f5d85dba38b5e3f87a6a27692b423e9b6e65f15effe46d09b4c102a1ff90a3f4261a0198c86d9347ffb8aacec3569553ca5afbaf9e36a3693a6998454540c3'
6
+ metadata.gz: 7bb34a1bc339c9e865b8d5ae8eff2742c7d52c87860c0030595a2d7784d4783cf6c93b0ba0a779abd94d9f0fa14a8f1e21b92c84b1b3bdb888ee2fe8f03cd737
7
+ data.tar.gz: 894556bfa2fbb66362f167906639936cc7242f62212e25416c38612c09b187fa8aa899f0f44a91fa655daf6287e52fdbabfc96e07abf3b2cb4ee877970ce897b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- watchcat (0.2.0)
4
+ watchcat (0.2.1)
5
5
  drb
6
6
  rb_sys
7
7
 
@@ -22,7 +22,7 @@ GEM
22
22
  listen (3.9.0)
23
23
  rb-fsevent (~> 0.10, >= 0.10.3)
24
24
  rb-inotify (~> 0.9, >= 0.9.10)
25
- minitest (5.25.1)
25
+ minitest (5.25.2)
26
26
  minitest-retry (0.2.3)
27
27
  minitest (>= 5.0)
28
28
  nokogiri (1.16.7-arm64-darwin)
@@ -40,7 +40,7 @@ GEM
40
40
  rb-fsevent (0.11.2)
41
41
  rb-inotify (0.11.1)
42
42
  ffi (~> 1.0)
43
- rb_sys (0.9.102)
43
+ rb_sys (0.9.103)
44
44
  rdoc (6.7.0)
45
45
  psych (>= 4.0.0)
46
46
  reline (0.5.10)
Binary file
Binary file
Binary file
Binary file
@@ -1,8 +1,8 @@
1
1
  module Watchcat
2
2
  class Client
3
- def initialize(uri, paths:, recursive:, force_polling:, poll_interval:, ignore_remove:, debounce:)
3
+ def initialize(uri, watcher:, paths:, recursive:, force_polling:, poll_interval:, ignore_remove:, debounce:)
4
4
  DRb.start_service
5
- @watcher = Watchcat::Watcher.new
5
+ @watcher = watcher
6
6
  @server = DRbObject.new_with_uri(uri)
7
7
  @paths = paths
8
8
  @recursive = recursive
@@ -16,6 +16,7 @@ module Watchcat
16
16
  @ignore_remove = ignore_remove
17
17
  @debounce = debounce
18
18
  @block = block
19
+ @watcher = Watchcat::Watcher.new
19
20
  end
20
21
 
21
22
  def start
@@ -40,6 +41,7 @@ module Watchcat
40
41
 
41
42
  def stop
42
43
  begin
44
+ @watcher.close
43
45
  Process.kill(:KILL, @child_pid)
44
46
  rescue Errno::ESRCH
45
47
  # NOTE: We can ignore this error because there process is already dead.
@@ -52,6 +54,7 @@ module Watchcat
52
54
  def build_client
53
55
  Client.new(
54
56
  @service.uri,
57
+ watcher: @watcher,
55
58
  paths: @paths,
56
59
  recursive: @recursive,
57
60
  force_polling: @force_polling,
@@ -1,3 +1,3 @@
1
1
  module Watchcat
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watchcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Yuji Yaginuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-21 00:00:00.000000000 Z
11
+ date: 2024-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: drb