listen 1.0.2 → 1.0.3
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 +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/listen/directory_record.rb +1 -1
- data/lib/listen/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe9b35d39c31dd0f12c28fe53cce187e455ad13a
|
|
4
|
+
data.tar.gz: 5bc97f0ae143ce0fc3dc330cdf7a1838b2c139a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a626870744c05d39d6f30b5b7dd0926c66629773da8493e154151b8372fca3ccb124c5f0a25915318caaea0a4b6dc927010c52e4fee83be6fe9297a99d717f51
|
|
7
|
+
data.tar.gz: 9a85e312fe3c0a0104362b941964520570038dca4c967af20c8315fc30ac4f36c627be64d56f4a8b325a483c70e8b32a8a85c2c49ee927fd1ce891596b9100bc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 1.0.3 - April 29, 2013
|
|
2
|
+
|
|
3
|
+
### Bug fix
|
|
4
|
+
|
|
5
|
+
- Rescue Errno::EBADF on sha1_checksum generation. ([@thibaudgg][])
|
|
6
|
+
|
|
1
7
|
## 1.0.2 - April 22, 2013
|
|
2
8
|
|
|
3
9
|
### Bug fix
|
|
@@ -276,4 +282,4 @@
|
|
|
276
282
|
[@textgoeshere]: https://github.com/textgoeshere
|
|
277
283
|
[@thibaudgg]: https://github.com/thibaudgg
|
|
278
284
|
[@vongruenigen]: https://github.com/vongruenigen
|
|
279
|
-
[@zanker]: https://github.com/zanker
|
|
285
|
+
[@zanker]: https://github.com/zanker
|
|
@@ -339,7 +339,7 @@ module Listen
|
|
|
339
339
|
#
|
|
340
340
|
def sha1_checksum(path)
|
|
341
341
|
Digest::SHA1.file(path).to_s
|
|
342
|
-
rescue Errno::EACCES, Errno::ENOENT, Errno::ENXIO, Errno::EOPNOTSUPP
|
|
342
|
+
rescue Errno::EACCES, Errno::ENOENT, Errno::ENXIO, Errno::EOPNOTSUPP, Errno::EBADF
|
|
343
343
|
nil
|
|
344
344
|
end
|
|
345
345
|
|
data/lib/listen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: listen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
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: 2013-04-
|
|
12
|
+
date: 2013-04-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rb-fsevent
|
|
@@ -129,3 +129,4 @@ signing_key:
|
|
|
129
129
|
specification_version: 4
|
|
130
130
|
summary: Listen to file modifications
|
|
131
131
|
test_files: []
|
|
132
|
+
has_rdoc:
|