rb-fsevent 0.11.0 → 0.11.2

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: 8fa142a3dd92401ead21804759f41c08f1098b51e825e1568a16c831d116ab65
4
- data.tar.gz: 6fdee72304339d8bab6b2407a1e5c2c281ad185435f7c11d34279225c9fb3406
3
+ metadata.gz: 7c8c92376eeb34be708f73c6a29aebfef7d2fce8919e428c493208d1c3066461
4
+ data.tar.gz: 71166ebf59e98ff0326168c2ab3ba7fe7860320b5cba223756a6d62bdc94b786
5
5
  SHA512:
6
- metadata.gz: c3e43118e4d444d59d0ad47ff692c7f90477bee895a56f0b26ba98cb5da1bf8ac7d21a4e382bf8605ec1ef166b3f549cf11b3d08bebbfa436400b2da909a1168
7
- data.tar.gz: ea47ee332c8640d39ada051f9d06867e2c09ee1daff6915160615dd177be82f8d068954f236da62d2899d04ce355a045f162fdd3e07fb1fb26523cff1ad062af
6
+ metadata.gz: '033913db01e9cc9c414e19f1322e5b8a715e0d3a98dce60e0872144e5120073ad57d35156052115759595271ae31f2df03484749215b4a8945b297fb3bc5ea6b'
7
+ data.tar.gz: da1b949464a8e0ca33a88c85688aa052569a1e70d885285a6ec646abc9dee5a9923ded1878431936a9f7bf430461c237328ebd726ac3b6c35e28ad5d21e1e125
data/lib/otnetstring.rb CHANGED
@@ -28,7 +28,7 @@ module OTNetstring
28
28
  def parse(io, encoding = 'internal', fallback_encoding = nil)
29
29
  fallback_encoding = io.encoding if io.respond_to? :encoding
30
30
  io = StringIO.new(io) if io.respond_to? :to_str
31
- length, byte = "", nil
31
+ length, byte = String.new, nil
32
32
 
33
33
  while byte.nil? || byte =~ /\d/
34
34
  length << byte if byte
@@ -44,8 +44,8 @@ class FSEvent
44
44
  while @running && IO::select([@pipe], nil, nil, nil)
45
45
  # managing the IO ourselves allows us to be careful and never pass an
46
46
  # incomplete message to OTNetstring.parse()
47
- message = ""
48
- length = ""
47
+ message = String.new
48
+ length = String.new
49
49
  byte = nil
50
50
 
51
51
  reading_length = true
@@ -89,7 +89,7 @@ class FSEvent
89
89
  Process.kill('KILL', @pipe.pid) if process_running?(@pipe.pid)
90
90
  @pipe.close
91
91
  end
92
- rescue IOError
92
+ rescue IOError, Errno::EBADF
93
93
  ensure
94
94
  @running = false
95
95
  end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  class FSEvent
4
- VERSION = '0.11.0'
4
+ VERSION = '0.11.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb-fsevent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibaud Guillaume-Gentil
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-05-08 00:00:00.000000000 Z
12
+ date: 2022-08-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubygems_version: 3.2.11
111
+ rubygems_version: 3.3.10
112
112
  signing_key:
113
113
  specification_version: 4
114
114
  summary: Very simple & usable FSEvents API