hotwire-spark 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/hotwire/spark/file_watcher.rb +5 -1
- data/lib/hotwire/spark/version.rb +1 -1
- data/lib/hotwire-spark.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 771d94935221f422b97adce54e2bcd95f0ac91a9c9ef8eeb6879a070d8645a01
|
4
|
+
data.tar.gz: 8e895a8c43b15c695c8774385af6983440be723a2b37fb7fb2361c5a6bef70c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 502ec0abffe9ce53cda5fccc52b9dd7f41ad597ebbd9385d2ed87f7f1f0c6a6c046b9c40bc9afd4fe17bb3f61280dd8397aa59344173819b124e9d32819fe447
|
7
|
+
data.tar.gz: 92aed611dab508073314d801a29263ed0fced3dd3b0e7649d1602eb14af6f0584d9ba3f5084eca2eb1657a2f5174bd942945a825c677cf20b1178f178bf8402a
|
data/README.md
CHANGED
@@ -28,6 +28,9 @@ The system will listen for three kinds of changes and will take action depending
|
|
28
28
|
* **CSS change:** it fetches and reloads the stylesheet that changed.
|
29
29
|
* **Stimulus controller change:** it fetches the Stimulus controller that changed and reloads all the controllers in the page.
|
30
30
|
|
31
|
+
> [!NOTE]
|
32
|
+
> Hotwire Spark currently does not support `jsbundling`, only import maps.
|
33
|
+
|
31
34
|
## Configuration
|
32
35
|
|
33
36
|
You can set configuration options on your `development.rb`. For example:
|
@@ -25,7 +25,11 @@ class Hotwire::Spark::FileWatcher
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def paths
|
28
|
-
@callbacks_by_path.keys
|
28
|
+
only_existing_paths @callbacks_by_path.keys
|
29
|
+
end
|
30
|
+
|
31
|
+
def only_existing_paths(paths)
|
32
|
+
paths.select(&:exist?)
|
29
33
|
end
|
30
34
|
|
31
35
|
def process_changed_files(changed_files)
|
data/lib/hotwire-spark.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hotwire-spark
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jorge Manrubia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|