listen 1.1.0 → 1.1.1
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 +8 -1
- data/README.md +8 -0
- data/lib/listen/adapter.rb +4 -1
- data/lib/listen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa1e9fe156afae71a254311f40e8ebb0ba93b423
|
|
4
|
+
data.tar.gz: 71b97337f7b82a038b2f70eefa1a2447ca180354
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac27bbd5ff267daf077eac6b2bd9212c9ad516f9dea9029e5794e88792482f0fd19d66a6d85598bed3823908c7d6ecd42f2071d085904b24969fa6e289b50f83
|
|
7
|
+
data.tar.gz: 23f418255b02684953ef41bfa546aa3bd9038c64981b96e65bd6a92458a4bfb798305328962502e14d9a9ec61d018fec93384f58e0b2feef92a2f29457c41079
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 1.1.1 - May 14, 2013
|
|
2
|
+
|
|
3
|
+
### Bug fix
|
|
4
|
+
|
|
5
|
+
- [#113][] Kill poller_thread before waiting for it to die. ([@antifuchs][])
|
|
6
|
+
|
|
1
7
|
## 1.1.0 - May 11, 2013
|
|
2
8
|
|
|
3
9
|
### Bug fix
|
|
@@ -268,6 +274,7 @@
|
|
|
268
274
|
[#104]: https://github.com/guard/listen/issues/104
|
|
269
275
|
[#110]: https://github.com/guard/listen/issues/110
|
|
270
276
|
[#112]: https://github.com/guard/listen/issues/112
|
|
277
|
+
[#113]: https://github.com/guard/listen/issues/113
|
|
271
278
|
[@Maher4Ever]: https://github.com/Maher4Ever
|
|
272
279
|
[@ahoward]: https://github.com/ahoward
|
|
273
280
|
[@akerbos]: https://github.com/akerbos
|
|
@@ -294,4 +301,4 @@
|
|
|
294
301
|
[@textgoeshere]: https://github.com/textgoeshere
|
|
295
302
|
[@thibaudgg]: https://github.com/thibaudgg
|
|
296
303
|
[@vongruenigen]: https://github.com/vongruenigen
|
|
297
|
-
[@zanker]: https://github.com/zanker
|
|
304
|
+
[@zanker]: https://github.com/zanker
|
data/README.md
CHANGED
|
@@ -13,6 +13,14 @@ The Listen gem listens to file modifications and notifies you about the changes.
|
|
|
13
13
|
* Allows supplying regexp-patterns to ignore and filter paths for better results.
|
|
14
14
|
* Tested on all Ruby environments via [Travis CI](https://travis-ci.org/guard/listen).
|
|
15
15
|
|
|
16
|
+
## Pending features
|
|
17
|
+
|
|
18
|
+
Still not implemented, pull requests are welcome.
|
|
19
|
+
|
|
20
|
+
* Symlinks support. [#25](https://github.com/guard/listen/issues/25)
|
|
21
|
+
* Signal handling. [#105](https://github.com/guard/listen/issues/105)
|
|
22
|
+
* Non-recursive directory scaning. [#111](https://github.com/guard/listen/issues/111)
|
|
23
|
+
|
|
16
24
|
## Install
|
|
17
25
|
|
|
18
26
|
### Using Bundler
|
data/lib/listen/adapter.rb
CHANGED
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.1.
|
|
4
|
+
version: 1.1.1
|
|
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-05-
|
|
12
|
+
date: 2013-05-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rb-fsevent
|