listen 3.3.3 → 3.3.4
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/README.md +113 -6
- data/lib/listen/adapter/linux.rb +1 -1
- data/lib/listen/record.rb +3 -15
- data/lib/listen/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3502b7f13a7eb3801aa2ccfb12825f13ce550b6339316389a17ed6319c3c450d
|
|
4
|
+
data.tar.gz: 433b372d311ea535f67999d23ef947dd3e4358849a60467dcf41582387d04b0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a522a4498c0369db11679d60a7702e348f41442c33aa25e292807b91aa42fd7a672ed2ce77f1993c30da16b1dcae2733ecf2ddd70bbbd9a1bd89c8192483199
|
|
7
|
+
data.tar.gz: e8f695e75d67aa62ad4f3bd5e7d237717b7f58f1e6d444099697c901b21d49ed144250eca0ef3987dd33c625de4e181b86e57f35fdc839ccdb0b6a3b3578bf75
|
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@ The `listen` gem listens to file modifications and notifies you about the change
|
|
|
22
22
|
|
|
23
23
|
* Limited support for symlinked directories ([#279](https://github.com/guard/listen/issues/279)):
|
|
24
24
|
* Symlinks are always followed ([#25](https://github.com/guard/listen/issues/25)).
|
|
25
|
-
* Symlinked directories pointing within a watched directory are not supported ([#273](https://github.com/guard/listen/pull/273)
|
|
25
|
+
* Symlinked directories pointing within a watched directory are not supported ([#273](https://github.com/guard/listen/pull/273).
|
|
26
26
|
* No directory/adapter-specific configuration options.
|
|
27
27
|
* Support for plugins planned for future.
|
|
28
28
|
* TCP functionality was removed in `listen` [3.0.0](https://github.com/guard/listen/releases/tag/v3.0.0) ([#319](https://github.com/guard/listen/issues/319), [#218](https://github.com/guard/listen/issues/218)). There are plans to extract this feature to separate gems ([#258](https://github.com/guard/listen/issues/258)), until this is finished, you can use by locking the `listen` gem to version `'~> 2.10'`.
|
|
@@ -40,7 +40,7 @@ Pull requests or help is very welcome for these.
|
|
|
40
40
|
The simplest way to install `listen` is to use [Bundler](http://bundler.io).
|
|
41
41
|
|
|
42
42
|
```ruby
|
|
43
|
-
gem 'listen'
|
|
43
|
+
gem 'listen'
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
## Complete Example
|
|
@@ -240,7 +240,7 @@ If you are on Windows, it's recommended to use the [`wdm`](https://github.com/Ma
|
|
|
240
240
|
Please add the following to your Gemfile:
|
|
241
241
|
|
|
242
242
|
```ruby
|
|
243
|
-
gem 'wdm', '>= 0.1.0'
|
|
243
|
+
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
244
244
|
```
|
|
245
245
|
|
|
246
246
|
### On \*BSD
|
|
@@ -259,7 +259,82 @@ end
|
|
|
259
259
|
|
|
260
260
|
### Getting the [polling fallback message](#options)?
|
|
261
261
|
|
|
262
|
-
|
|
262
|
+
If you see:
|
|
263
|
+
```
|
|
264
|
+
Listen will be polling for changes.
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
This means the Listen gem can’t find an optimized adapter. Typically this is caused by:
|
|
268
|
+
|
|
269
|
+
- You’re on Windows and WDM gem isn’t installed.
|
|
270
|
+
- You’re running the app without Bundler or RubyGems.
|
|
271
|
+
- Using Sass which includes an ancient (the “dinosaur” type of ancient) version of the Listen gem.
|
|
272
|
+
|
|
273
|
+
Possible solutions:
|
|
274
|
+
|
|
275
|
+
1. Suppress the message by using the :force_polling option. Or, you could just ignore the message since it’s harmless.
|
|
276
|
+
2. Windows users: Install the WDM gem.
|
|
277
|
+
3. Upgrade Ruby (use RubyInstaller for Windows or RVM/rbenv for Mac) and RubyGems.
|
|
278
|
+
3. Run your apps using Bundler.
|
|
279
|
+
4. Sass users: Install the latest version of Listen and try again.
|
|
280
|
+
|
|
281
|
+
#### Simplified Bundler and Sass example
|
|
282
|
+
Create a Gemfile with these lines:
|
|
283
|
+
```
|
|
284
|
+
source 'https://rubygems.org'
|
|
285
|
+
gem 'listen'
|
|
286
|
+
gem 'sass'
|
|
287
|
+
```
|
|
288
|
+
Next, use Bundler to update gems:
|
|
289
|
+
```
|
|
290
|
+
$ bundle update
|
|
291
|
+
$ bundle exec sass --watch # ... or whatever app is using Listen.
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
### Increasing the amount of inotify watchers
|
|
295
|
+
|
|
296
|
+
If you are running Debian, RedHat, or another similar Linux distribution, run the following in a terminal:
|
|
297
|
+
```
|
|
298
|
+
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"
|
|
299
|
+
$ sudo sysctl -p
|
|
300
|
+
```
|
|
301
|
+
If you are running ArchLinux, search the `/etc/sysctl.d/` directory for config files with the setting:
|
|
302
|
+
```
|
|
303
|
+
$ grep -H -s "fs.inotify.max_user_watches" /etc/sysctl.d/*
|
|
304
|
+
/etc/sysctl.d/40-max_user_watches.conf:fs.inotify.max_user_watches=100000
|
|
305
|
+
```
|
|
306
|
+
Then change the setting in the file you found above to a higher value (see [here](https://www.archlinux.org/news/deprecation-of-etcsysctlconf/) for why):
|
|
307
|
+
```
|
|
308
|
+
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 > /etc/sysctl.d/40-max-user-watches.conf"
|
|
309
|
+
$ sudo sysctl --system
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
#### The technical details
|
|
313
|
+
Listen uses `inotify` by default on Linux to monitor directories for changes.
|
|
314
|
+
It's not uncommon to encounter a system limit on the number of files you can monitor.
|
|
315
|
+
For example, Ubuntu Lucid's (64bit) `inotify` limit is set to 8192.
|
|
316
|
+
|
|
317
|
+
You can get your current inotify file watch limit by executing:
|
|
318
|
+
```
|
|
319
|
+
$ cat /proc/sys/fs/inotify/max_user_watches
|
|
320
|
+
```
|
|
321
|
+
When this limit is not enough to monitor all files inside a directory, the limit must be increased for Listen to work properly.
|
|
322
|
+
|
|
323
|
+
You can set a new limit temporarily with:
|
|
324
|
+
```
|
|
325
|
+
$ sudo sysctl fs.inotify.max_user_watches=524288
|
|
326
|
+
$ sudo sysctl -p
|
|
327
|
+
```
|
|
328
|
+
If you like to make your limit permanent, use:
|
|
329
|
+
```
|
|
330
|
+
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"
|
|
331
|
+
$ sudo sysctl -p
|
|
332
|
+
```
|
|
333
|
+
You may also need to pay attention to the values of `max_queued_events` and `max_user_instances` if Listen keeps on complaining.
|
|
334
|
+
|
|
335
|
+
#### More info
|
|
336
|
+
Man page for [inotify(7)](https://linux.die.net/man/7/inotify).
|
|
337
|
+
Blog post: [limit of inotify](https://blog.sorah.jp/2012/01/24/inotify-limitation).
|
|
263
338
|
|
|
264
339
|
### Issues and Troubleshooting
|
|
265
340
|
|
|
@@ -267,7 +342,35 @@ If the gem doesn't work as expected, start by setting `LISTEN_GEM_DEBUGGING=debu
|
|
|
267
342
|
|
|
268
343
|
*NOTE: without providing the output after setting the `LISTEN_GEM_DEBUGGING=debug` environment variable, it is usually impossible to guess why `listen` is not working as expected.*
|
|
269
344
|
|
|
270
|
-
|
|
345
|
+
#### 3 steps before you start diagnosing problems
|
|
346
|
+
These 3 steps will:
|
|
347
|
+
|
|
348
|
+
- help quickly troubleshoot obscure problems (trust me, most of them are obscure)
|
|
349
|
+
- help quickly identify the area of the problem (a full list is below)
|
|
350
|
+
- help you get familiar with listen's diagnostic mode (it really comes in handy, trust me)
|
|
351
|
+
- help you create relevant output before you submit an issue (so we can respond with answers instead of tons of questions)
|
|
352
|
+
|
|
353
|
+
Step 1 - The most important option in Listen
|
|
354
|
+
For effective troubleshooting set the `LISTEN_GEM_DEBUGGING=info` variable before starting `listen`.
|
|
355
|
+
|
|
356
|
+
Step 2 - Verify polling works
|
|
357
|
+
Polling has to work ... or something is really wrong (and we need to know that before anything else).
|
|
358
|
+
|
|
359
|
+
(see force_polling option).
|
|
360
|
+
|
|
361
|
+
After starting `listen`, you should see something like:
|
|
362
|
+
```
|
|
363
|
+
INFO -- : Record.build(): 0.06773114204406738 seconds
|
|
364
|
+
```
|
|
365
|
+
Step 3 - Trigger some changes directly without using editors or apps
|
|
366
|
+
Make changes e.g. touch foo or echo "a" >> foo (for troubleshooting, avoid using an editor which could generate too many misleading events).
|
|
367
|
+
|
|
368
|
+
You should see something like:
|
|
369
|
+
```
|
|
370
|
+
INFO -- : listen: raw changes: [[:added, "/home/me/foo"]]
|
|
371
|
+
INFO -- : listen: final changes: {:modified=>[], :added=>["/home/me/foo"], :removed=>[]}
|
|
372
|
+
```
|
|
373
|
+
"raw changes" contains changes collected during the :wait_for_delay and :latency intervals, while "final changes" is what listen decided are relevant changes (for better editor support).
|
|
271
374
|
|
|
272
375
|
## Performance
|
|
273
376
|
|
|
@@ -289,7 +392,11 @@ Also, if the directories you're watching contain many files, make sure you're:
|
|
|
289
392
|
|
|
290
393
|
When in doubt, `LISTEN_GEM_DEBUGGING=debug` can help discover the actual events and time they happened.
|
|
291
394
|
|
|
292
|
-
|
|
395
|
+
## Tips and Techniques
|
|
396
|
+
- Watch only directories you're interested in.
|
|
397
|
+
- Set your editor to save quickly (e.g. without backup files, without atomic-save)
|
|
398
|
+
- Tweak the `:latency` and `:wait_for_delay` options until you get good results (see [options](#options)).
|
|
399
|
+
- Add `:ignore` rules to silence all events you don't care about (reduces a lot of noise, especially if you use it on directories)
|
|
293
400
|
|
|
294
401
|
## Development
|
|
295
402
|
|
data/lib/listen/adapter/linux.rb
CHANGED
|
@@ -22,7 +22,7 @@ module Listen
|
|
|
22
22
|
private
|
|
23
23
|
|
|
24
24
|
WIKI_URL = 'https://github.com/guard/listen'\
|
|
25
|
-
'/
|
|
25
|
+
'/blob/master/README.md#increasing-the-amount-of-inotify-watchers'
|
|
26
26
|
|
|
27
27
|
INOTIFY_LIMIT_MESSAGE = <<-EOS.gsub(/^\s*/, '')
|
|
28
28
|
FATAL: Listen error: unable to monitor directories for changes.
|
data/lib/listen/record.rb
CHANGED
|
@@ -45,10 +45,11 @@ module Listen
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
def dir_entries(rel_path)
|
|
48
|
-
subtree = if [
|
|
48
|
+
subtree = if ['', '.'].include? rel_path.to_s
|
|
49
49
|
@tree
|
|
50
50
|
else
|
|
51
|
-
|
|
51
|
+
@tree[rel_path.to_s] ||= _auto_hash
|
|
52
|
+
@tree[rel_path.to_s]
|
|
52
53
|
end
|
|
53
54
|
|
|
54
55
|
subtree.transform_values do |values|
|
|
@@ -57,19 +58,6 @@ module Listen
|
|
|
57
58
|
end
|
|
58
59
|
end
|
|
59
60
|
|
|
60
|
-
def _sub_tree(rel_path)
|
|
61
|
-
@tree.each_with_object({}) do |(path, meta), result|
|
|
62
|
-
next unless path.start_with?(rel_path)
|
|
63
|
-
|
|
64
|
-
if path == rel_path
|
|
65
|
-
result.merge!(meta)
|
|
66
|
-
else
|
|
67
|
-
sub_path = path.sub(%r{\A#{rel_path}/?}, '')
|
|
68
|
-
result[sub_path] = meta
|
|
69
|
-
end
|
|
70
|
-
end
|
|
71
|
-
end
|
|
72
|
-
|
|
73
61
|
def build
|
|
74
62
|
@tree = _auto_hash
|
|
75
63
|
# TODO: test with a file name given
|
data/lib/listen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: listen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thibaud Guillaume-Gentil
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb-fsevent
|
|
@@ -101,9 +101,9 @@ metadata:
|
|
|
101
101
|
allowed_push_host: https://rubygems.org
|
|
102
102
|
bug_tracker_uri: https://github.com/guard/listen/issues
|
|
103
103
|
changelog_uri: https://github.com/guard/listen/releases
|
|
104
|
-
documentation_uri: https://www.rubydoc.info/gems/listen/3.3.
|
|
104
|
+
documentation_uri: https://www.rubydoc.info/gems/listen/3.3.4
|
|
105
105
|
homepage_uri: https://github.com/guard/listen
|
|
106
|
-
source_code_uri: https://github.com/guard/listen/tree/v3.3.
|
|
106
|
+
source_code_uri: https://github.com/guard/listen/tree/v3.3.4
|
|
107
107
|
wiki_uri: https://github.com/guard/listen/wiki
|
|
108
108
|
post_install_message:
|
|
109
109
|
rdoc_options: []
|