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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e27d80cfe9f1b26c49118959840561d2691f97dc
4
- data.tar.gz: 2a460c4b586332c0f7c0774a44c3295d609b6930
3
+ metadata.gz: fa1e9fe156afae71a254311f40e8ebb0ba93b423
4
+ data.tar.gz: 71b97337f7b82a038b2f70eefa1a2447ca180354
5
5
  SHA512:
6
- metadata.gz: 4c2be76e693930c8c035530ca7377dc60f6c7a9dd285eedcae1d903c14d2fc619c80877efff0b6ee86732d6713d99293bad7c4201ee738eac9c153c955fc633b
7
- data.tar.gz: b2a0338bd2a2ce52728f69a633af62e0eeb341211465efec23b1bfd3332ba4864d16f60888a5de27eddbdd9160d247c57bbaf96578e7b849878ca567519de256
6
+ metadata.gz: ac27bbd5ff267daf077eac6b2bd9212c9ad516f9dea9029e5794e88792482f0fd19d66a6d85598bed3823908c7d6ecd42f2071d085904b24969fa6e289b50f83
7
+ data.tar.gz: 23f418255b02684953ef41bfa546aa3bd9038c64981b96e65bd6a92458a4bfb798305328962502e14d9a9ec61d018fec93384f58e0b2feef92a2f29457c41079
@@ -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
@@ -113,7 +113,10 @@ module Listen
113
113
 
114
114
  worker.stop if worker
115
115
  Thread.kill(worker_thread) if worker_thread
116
- poller_thread.join if poller_thread
116
+ if poller_thread
117
+ poller_thread.kill
118
+ poller_thread.join
119
+ end
117
120
  end
118
121
 
119
122
  # Pauses the adapter.
@@ -1,3 +1,3 @@
1
1
  module Listen
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
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.0
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-11 00:00:00.000000000 Z
12
+ date: 2013-05-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rb-fsevent