fusuma 3.6.1 → 3.6.2
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/lib/fusuma/plugin/base.rb +2 -3
- data/lib/fusuma/plugin/manager.rb +1 -0
- data/lib/fusuma/version.rb +1 -1
- 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: f33e5a3a9c8df27631e81c1bd9e4d9381e04a5a1c35717c0b70e76d44df840e5
|
|
4
|
+
data.tar.gz: 2ce6df664b39c46fc7d9262a7167a27cccf181c567a82305e0378f2b4a3f0a3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85627e1ff3d1b7ec4b0b3e61120e7aa4f3e366104018965d8fc96c9188e798feff37ce2073acc8253f1d1c7eeea7cc5191d607e563dedfc8a1e54f9cc12702f6
|
|
7
|
+
data.tar.gz: b4fac91bfef1192626f0b418383eaa9b4cb4d42b7661a520527bc3138f961fcf4b32a86f36265c9770521052b6d2c89d2794e720982928cd23db3071b5c405b0
|
data/lib/fusuma/plugin/base.rb
CHANGED
|
@@ -53,9 +53,8 @@ module Fusuma
|
|
|
53
53
|
|
|
54
54
|
next if param_types.any? { |klass| val.is_a?(klass) }
|
|
55
55
|
|
|
56
|
-
MultiLogger.error("Please fix config.yml
|
|
57
|
-
MultiLogger.error("
|
|
58
|
-
.join(" => :")} => :#{key} should be #{param_types.join(" OR ")}.")
|
|
56
|
+
MultiLogger.error("Please fix config.yml")
|
|
57
|
+
MultiLogger.error("`#{config_index.keys.join(".")}.#{key}` should be #{param_types.join(" OR ")}.")
|
|
59
58
|
exit 1
|
|
60
59
|
end
|
|
61
60
|
end
|
|
@@ -40,6 +40,7 @@ module Fusuma
|
|
|
40
40
|
plugin_gemspec = Gem::Specification.load(plugin_gemspec_path)
|
|
41
41
|
fusuma_gemspec_path = File.expand_path("../../../fusuma.gemspec", __dir__)
|
|
42
42
|
fusuma_gemspec = Gem::Specification.load(fusuma_gemspec_path)
|
|
43
|
+
next if plugin_gemspec == fusuma_gemspec
|
|
43
44
|
|
|
44
45
|
if plugin_gemspec.dependencies.find { |d| d.name == "fusuma" }&.match?(fusuma_gemspec)
|
|
45
46
|
siblings_plugin
|
data/lib/fusuma/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fusuma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.6.
|
|
4
|
+
version: 3.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Fusuma is multitouch gesture recognizer. This gem makes your touchpad
|
|
14
14
|
on Linux able to recognize swipes or pinchs and assign command to them. Read installation
|