fusuma-plugin-appmatcher 0.1.2 → 0.1.3
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e12c87eb59476cf417e3272b229e1b448c9f2bab20a8cc0d2596fa562e832fa0
|
|
4
|
+
data.tar.gz: 2918938078f1b86292d528f6342d708ddccd8a5ee453d93515997efa668f687a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c0c05079214be4742f9e17c4a3def70c9e4dd239a823c47285872406de181cc613bc95b37cdf7fa82c182bdd38a2dfc4e193073433747c4eba75c46f08b426a
|
|
7
|
+
data.tar.gz: f8bf0bb6069df830f6840902c8733cf65eb8235eae70228877b16787a563b7a1bb764abf9405456f58d449ec460cb78183e5b84cd581ddaee31b7d635ac1f5c7
|
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
|
|
25
|
+
spec.add_dependency "rexml" # ruby-dbus doesn't resolve dependency
|
|
25
26
|
spec.add_runtime_dependency 'ruby-dbus'
|
|
26
27
|
|
|
27
28
|
spec.add_dependency 'fusuma', '~> 2.0.0'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
require './lib/fusuma/plugin/appmatcher/gnome'
|
|
5
|
+
|
|
6
|
+
module Fusuma
|
|
7
|
+
module Plugin
|
|
8
|
+
module Appmatcher
|
|
9
|
+
RSpec.describe Gnome do
|
|
10
|
+
it 'requires ruby-dbus' do
|
|
11
|
+
expect(DBus).not_to be nil
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fusuma-plugin-appmatcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rexml
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: ruby-dbus
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -63,6 +77,7 @@ files:
|
|
|
63
77
|
- lib/fusuma/plugin/events/records/appmatcher_record.rb
|
|
64
78
|
- lib/fusuma/plugin/inputs/appmatcher_input.rb
|
|
65
79
|
- lib/fusuma/plugin/parsers/appmatcher_parser.rb
|
|
80
|
+
- spec/fusuma/plugin/appmatcher/gnome_spec.rb
|
|
66
81
|
- spec/fusuma/plugin/appmatcher_spec.rb
|
|
67
82
|
- spec/fusuma/plugin/inputs/appmatcher_detector_spec.rb
|
|
68
83
|
- spec/spec_helper.rb
|
|
@@ -70,7 +85,7 @@ homepage: https://github.com/iberianpig/fusuma-plugin-appmatcher
|
|
|
70
85
|
licenses:
|
|
71
86
|
- MIT
|
|
72
87
|
metadata: {}
|
|
73
|
-
post_install_message:
|
|
88
|
+
post_install_message:
|
|
74
89
|
rdoc_options: []
|
|
75
90
|
require_paths:
|
|
76
91
|
- lib
|
|
@@ -85,11 +100,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
85
100
|
- !ruby/object:Gem::Version
|
|
86
101
|
version: '0'
|
|
87
102
|
requirements: []
|
|
88
|
-
rubygems_version: 3.
|
|
89
|
-
signing_key:
|
|
103
|
+
rubygems_version: 3.2.15
|
|
104
|
+
signing_key:
|
|
90
105
|
specification_version: 4
|
|
91
106
|
summary: Fusuma plugin to assign gesture mapping per application
|
|
92
107
|
test_files:
|
|
93
|
-
- spec/fusuma/plugin/
|
|
108
|
+
- spec/fusuma/plugin/appmatcher/gnome_spec.rb
|
|
94
109
|
- spec/fusuma/plugin/appmatcher_spec.rb
|
|
110
|
+
- spec/fusuma/plugin/inputs/appmatcher_detector_spec.rb
|
|
95
111
|
- spec/spec_helper.rb
|