fusuma-plugin-tap 0.4.0 → 0.4.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 +4 -4
- data/fusuma-plugin-tap.gemspec +2 -4
- data/lib/fusuma/plugin/tap/version.rb +1 -1
- data/spec/fusuma/plugin/buffers/tap_buffer_spec.rb +164 -0
- data/spec/fusuma/plugin/detectors/tap_detector_spec.rb +169 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-double-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-hold.txt +6 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-tap.txt +8 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-hold-invalid.txt +259 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-hold.txt +116 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-pinch-and-hold-bug.txt +356 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-tap.txt +12 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-hold-invalid.txt +241 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-hold.txt +162 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-tap.txt +32 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-hold-invalid.txt +262 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-hold.txt +686 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-tap-after-palm-detected-bug.txt +27 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-tap.txt +34 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-hold-invalid.txt +137 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-pinch-and-hold-bug.txt +32 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-hold-invalid.txt +173 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-tap.txt +16 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-hold-invalid.txt +158 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-hold.txt +9 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-tap.txt +17 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-hold-invalid.txt +139 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-pinch-and-hold-bug.txt +48 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-hold-invalid.txt +172 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-hold.txt +14 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-hold-invalid.txt +158 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-hold-invalid.txt +142 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-pinch-and-hold-bug.txt +48 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-hold-invalid.txt +172 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-hold.txt +14 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-hold-invalid.txt +159 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-double-tap.txt +190 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-hold.txt +646 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-tap.txt +156 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-hold-invalid.txt +1789 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-hold.txt +426 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-pinch-and-hold-bug.txt +925 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-tap.txt +164 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-hold-invalid.txt +2129 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-hold.txt +471 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-tap.txt +169 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-hold-invalid.txt +2374 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-hold.txt +575 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-tap-after-palm-detected-bug.txt +250 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-tap.txt +206 -0
- data/spec/fusuma/plugin/parsers/tap_parser_spec.rb +200 -0
- data/spec/fusuma/plugin/tap_spec.rb +9 -0
- data/spec/helpers/config_helper.rb +16 -0
- data/spec/spec_helper.rb +18 -0
- metadata +155 -13
- data/.gitignore +0 -15
- data/.rspec +0 -3
- data/.rubocop.yml +0 -31
- data/.rubocop_todo.yml +0 -56
- data/.travis.yml +0 -23
- data/CHANGELOG.md +0 -65
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/Makefile +0 -25
- data/Rakefile +0 -15
@@ -0,0 +1,200 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
require 'fusuma/plugin/parsers/parser.rb'
|
6
|
+
|
7
|
+
module Fusuma
|
8
|
+
module Plugin
|
9
|
+
module Parsers
|
10
|
+
RSpec.describe TapParser do
|
11
|
+
describe '#parse_record' do
|
12
|
+
before do
|
13
|
+
@version = ENV.fetch('LIBINPUT_VERSION', '1.14.1')
|
14
|
+
|
15
|
+
@debug_log_version_dir = "spec/fusuma/plugin/parsers/#{@version}"
|
16
|
+
@parser = TapParser.new
|
17
|
+
end
|
18
|
+
context 'with 1 finger tap' do
|
19
|
+
before do
|
20
|
+
@records = File.readlines("#{@debug_log_version_dir}/1finger-tap.txt").map do |line|
|
21
|
+
@parser.parse_record(line)
|
22
|
+
end.compact
|
23
|
+
end
|
24
|
+
it 'generate tap record' do
|
25
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
26
|
+
expect(@records.map(&:finger).max).to eq 1
|
27
|
+
# expect(@records.map(&:status)).to eq %w[begin release end]
|
28
|
+
expect(@records.map(&:status)).to be_include 'begin'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
context 'with 2 finger tap' do
|
32
|
+
before do
|
33
|
+
@records = File.readlines("#{@debug_log_version_dir}/2finger-tap.txt").map do |line|
|
34
|
+
@parser.parse_record(line)
|
35
|
+
end.compact
|
36
|
+
end
|
37
|
+
it 'generate tap record' do
|
38
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
39
|
+
expect(@records.map(&:finger).max).to eq 2
|
40
|
+
# expect(@records.map(&:status)).to eq %w[begin touch release end]
|
41
|
+
expect(@records.map(&:status)).to be_include 'touch'
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context 'with 3 finger tap' do
|
46
|
+
before do
|
47
|
+
@records = File.readlines("#{@debug_log_version_dir}/3finger-tap.txt").map do |line|
|
48
|
+
@parser.parse_record(line)
|
49
|
+
end.compact
|
50
|
+
end
|
51
|
+
it 'generate tap record' do
|
52
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
53
|
+
expect(@records.map(&:finger).max).to eq 3
|
54
|
+
# expect(@records.map(&:status)).to eq %w[begin touch touch release release end]
|
55
|
+
expect(@records.map(&:status)).to be_include 'touch'
|
56
|
+
end
|
57
|
+
end
|
58
|
+
context 'with 4 finger tap' do
|
59
|
+
before do
|
60
|
+
@records = File.readlines("#{@debug_log_version_dir}/4finger-tap.txt").map do |line|
|
61
|
+
@parser.parse_record(line)
|
62
|
+
# finger, status
|
63
|
+
# 1, begin
|
64
|
+
# 2, touch
|
65
|
+
# 3, touch
|
66
|
+
# 4, touch
|
67
|
+
# 0, keep
|
68
|
+
# 0, keep
|
69
|
+
# 4, end
|
70
|
+
end.compact
|
71
|
+
end
|
72
|
+
it 'generate tap record' do
|
73
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
74
|
+
expect(@records.map(&:finger).max).to eq 4
|
75
|
+
expect(@records.map(&:status)).to be_include 'touch'
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'should generate end record' do
|
79
|
+
expect(@records.map(&:status)).to be_include 'end'
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
context 'with 1 finger hold' do
|
84
|
+
before do
|
85
|
+
@records = File.readlines("#{@debug_log_version_dir}/1finger-hold.txt").map do |line|
|
86
|
+
@parser.parse_record(line)
|
87
|
+
end.compact
|
88
|
+
end
|
89
|
+
it 'generate hold record' do
|
90
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
91
|
+
expect(@records.map(&:finger).max).to eq 1
|
92
|
+
# expect(@records.map(&:status)).to eq %w[begin hold end]
|
93
|
+
expect(@records.map(&:status)).to be_include 'hold'
|
94
|
+
end
|
95
|
+
end
|
96
|
+
context 'with 2 finger hold' do
|
97
|
+
before do
|
98
|
+
@records = File.readlines("#{@debug_log_version_dir}/2finger-hold.txt").map do |line|
|
99
|
+
@parser.parse_record(line)
|
100
|
+
end.compact
|
101
|
+
end
|
102
|
+
it 'generate hold record' do
|
103
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
104
|
+
expect(@records.map(&:finger).max).to eq 2
|
105
|
+
# expect(@records.map(&:status)).to eq %w[begin touch hold release end]
|
106
|
+
expect(@records.map(&:status)).to be_include 'hold'
|
107
|
+
end
|
108
|
+
end
|
109
|
+
context 'with 2 finger hold and scroll' do
|
110
|
+
before do
|
111
|
+
@records = File.readlines("#{@debug_log_version_dir}/2finger-hold-invalid.txt").map do |line|
|
112
|
+
@parser.parse_record(line)
|
113
|
+
end.compact
|
114
|
+
end
|
115
|
+
it 'generate hold record' do
|
116
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
117
|
+
expect(@records.map(&:finger).max).to eq 2
|
118
|
+
# expect(@records.map(&:status)).to eq %w[begin touch hold release end]
|
119
|
+
expect(@records.map(&:status)).to be_include 'hold'
|
120
|
+
end
|
121
|
+
it 'generate move record' do
|
122
|
+
expect(@records.map(&:status)).to be_include 'move'
|
123
|
+
end
|
124
|
+
end
|
125
|
+
context 'with 3 finger hold' do
|
126
|
+
before do
|
127
|
+
@records = File.readlines("#{@debug_log_version_dir}/3finger-hold.txt").map do |line|
|
128
|
+
@parser.parse_record(line)
|
129
|
+
end.compact
|
130
|
+
end
|
131
|
+
it 'generate hold record' do
|
132
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
133
|
+
expect(@records.map(&:finger).max).to eq 3
|
134
|
+
# expect(@records.map(&:status)).to eq %w[begin touch touch hold release release end]
|
135
|
+
expect(@records.map(&:status)).to be_include 'hold'
|
136
|
+
end
|
137
|
+
end
|
138
|
+
context 'with 3 finger hold and scroll' do
|
139
|
+
before do
|
140
|
+
@records = File.readlines("#{@debug_log_version_dir}/3finger-hold-invalid.txt").map do |line|
|
141
|
+
@parser.parse_record(line)
|
142
|
+
end.compact
|
143
|
+
end
|
144
|
+
it 'generate hold record' do
|
145
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
146
|
+
expect(@records.map(&:finger).max).to eq 3
|
147
|
+
# expect(@records.map(&:status)).to eq %w[begin touch hold release end]
|
148
|
+
expect(@records.map(&:status)).to be_include 'hold'
|
149
|
+
end
|
150
|
+
it 'generate move record' do
|
151
|
+
expect(@records.map(&:status)).not_to be_include 'move'
|
152
|
+
end
|
153
|
+
end
|
154
|
+
context 'with 4 finger hold' do
|
155
|
+
before do
|
156
|
+
@records = File.readlines("#{@debug_log_version_dir}/4finger-hold.txt").map do |line|
|
157
|
+
@parser.parse_record(line)
|
158
|
+
end.compact
|
159
|
+
end
|
160
|
+
it 'generate hold record' do
|
161
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
162
|
+
expect(@records.map(&:finger).max).to eq 4
|
163
|
+
# Cannot detect 'HOLD' with 4 finger hold
|
164
|
+
# it should be detect by holding time when existing 4 finger tap in buffer
|
165
|
+
expect(@records.map(&:status)).not_to be_include 'hold'
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
context 'with 2 finger pinch and hold' do
|
170
|
+
before do
|
171
|
+
@records = File.readlines("#{@debug_log_version_dir}/2finger-pinch-and-hold-bug.txt").map do |line|
|
172
|
+
@parser.parse_record(line)
|
173
|
+
end.compact
|
174
|
+
end
|
175
|
+
it 'should not generate 4 finger tap (bug)' do
|
176
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
177
|
+
expect(@records.map(&:finger).max).not_to eq 4
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
context 'with 4 finger tap after palm detected (bug)' do
|
182
|
+
before do
|
183
|
+
@records = File.readlines("#{@debug_log_version_dir}/4finger-tap-after-palm-detected-bug.txt").map do |line|
|
184
|
+
@parser.parse_record(line)
|
185
|
+
end.compact
|
186
|
+
end
|
187
|
+
it 'should generate 4 finger tap (bug)' do
|
188
|
+
# FIXME: Fail only libinput 1.10.4
|
189
|
+
skip if @version == '1.10.4'
|
190
|
+
|
191
|
+
expect(@records.map(&:gesture)).to all(eq 'tap')
|
192
|
+
expect(@records.map(&:finger).max).to eq 4
|
193
|
+
expect(@records.map(&:status)).to be_include 'touch'
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'tempfile'
|
4
|
+
require 'fusuma/config.rb'
|
5
|
+
|
6
|
+
module Fusuma
|
7
|
+
module ConfigHelper
|
8
|
+
module_function
|
9
|
+
|
10
|
+
def load_config_yml=(string)
|
11
|
+
Config.custom_path = Tempfile.open do |temp_file|
|
12
|
+
temp_file.tap { |f| f.write(string) }
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'helpers/config_helper.rb'
|
5
|
+
|
6
|
+
RSpec.configure do |config|
|
7
|
+
# Enable flags like --only-failures and --next-failure
|
8
|
+
config.example_status_persistence_file_path = '.rspec_status'
|
9
|
+
|
10
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
11
|
+
config.disable_monkey_patching!
|
12
|
+
|
13
|
+
config.expect_with :rspec do |c|
|
14
|
+
c.syntax = :expect
|
15
|
+
end
|
16
|
+
|
17
|
+
config.include(Fusuma::ConfigHelper)
|
18
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusuma-plugin-tap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- iberianpig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-04-
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fusuma
|
@@ -143,18 +143,8 @@ executables: []
|
|
143
143
|
extensions: []
|
144
144
|
extra_rdoc_files: []
|
145
145
|
files:
|
146
|
-
- ".gitignore"
|
147
|
-
- ".rspec"
|
148
|
-
- ".rubocop.yml"
|
149
|
-
- ".rubocop_todo.yml"
|
150
|
-
- ".travis.yml"
|
151
|
-
- CHANGELOG.md
|
152
|
-
- CODE_OF_CONDUCT.md
|
153
|
-
- Gemfile
|
154
146
|
- LICENSE.txt
|
155
|
-
- Makefile
|
156
147
|
- README.md
|
157
|
-
- Rakefile
|
158
148
|
- bin/console
|
159
149
|
- bin/evemu_recorder.rb
|
160
150
|
- bin/libinput_debug_events_generator.rb
|
@@ -165,6 +155,82 @@ files:
|
|
165
155
|
- lib/fusuma/plugin/parsers/tap_parser.rb
|
166
156
|
- lib/fusuma/plugin/tap.rb
|
167
157
|
- lib/fusuma/plugin/tap/version.rb
|
158
|
+
- spec/fusuma/plugin/buffers/tap_buffer_spec.rb
|
159
|
+
- spec/fusuma/plugin/detectors/tap_detector_spec.rb
|
160
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-double-tap.txt
|
161
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-hold.txt
|
162
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-tap.txt
|
163
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-hold-invalid.txt
|
164
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-hold.txt
|
165
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-pinch-and-hold-bug.txt
|
166
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-tap.txt
|
167
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-hold-invalid.txt
|
168
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-hold.txt
|
169
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-tap.txt
|
170
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-hold-invalid.txt
|
171
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-hold.txt
|
172
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-tap-after-palm-detected-bug.txt
|
173
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-tap.txt
|
174
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-double-tap.txt
|
175
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-hold.txt
|
176
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-tap.txt
|
177
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-hold-invalid.txt
|
178
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-hold.txt
|
179
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-pinch-and-hold-bug.txt
|
180
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-tap.txt
|
181
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-hold-invalid.txt
|
182
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-hold.txt
|
183
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-tap.txt
|
184
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-hold-invalid.txt
|
185
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-hold.txt
|
186
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-tap-after-palm-detected-bug.txt
|
187
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-tap.txt
|
188
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-double-tap.txt
|
189
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-hold.txt
|
190
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-tap.txt
|
191
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-hold-invalid.txt
|
192
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-hold.txt
|
193
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-pinch-and-hold-bug.txt
|
194
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-tap.txt
|
195
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-hold-invalid.txt
|
196
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-hold.txt
|
197
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-tap.txt
|
198
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-hold-invalid.txt
|
199
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-hold.txt
|
200
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-tap-after-palm-detected-bug.txt
|
201
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-tap.txt
|
202
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-double-tap.txt
|
203
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-hold.txt
|
204
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-tap.txt
|
205
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-hold-invalid.txt
|
206
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-hold.txt
|
207
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-pinch-and-hold-bug.txt
|
208
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-tap.txt
|
209
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-hold-invalid.txt
|
210
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-hold.txt
|
211
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-tap.txt
|
212
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-hold-invalid.txt
|
213
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-hold.txt
|
214
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-tap-after-palm-detected-bug.txt
|
215
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-tap.txt
|
216
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-double-tap.txt
|
217
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-hold.txt
|
218
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-tap.txt
|
219
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-hold-invalid.txt
|
220
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-hold.txt
|
221
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-pinch-and-hold-bug.txt
|
222
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-tap.txt
|
223
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-hold-invalid.txt
|
224
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-hold.txt
|
225
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-tap.txt
|
226
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-hold-invalid.txt
|
227
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-hold.txt
|
228
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-tap-after-palm-detected-bug.txt
|
229
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-tap.txt
|
230
|
+
- spec/fusuma/plugin/parsers/tap_parser_spec.rb
|
231
|
+
- spec/fusuma/plugin/tap_spec.rb
|
232
|
+
- spec/helpers/config_helper.rb
|
233
|
+
- spec/spec_helper.rb
|
168
234
|
homepage: https://github.com/iberianpig/fusuma-plugin-tap
|
169
235
|
licenses:
|
170
236
|
- MIT
|
@@ -188,4 +254,80 @@ rubygems_version: 3.1.4
|
|
188
254
|
signing_key:
|
189
255
|
specification_version: 4
|
190
256
|
summary: Tap gesture plugin for Fusuma
|
191
|
-
test_files:
|
257
|
+
test_files:
|
258
|
+
- spec/fusuma/plugin/tap_spec.rb
|
259
|
+
- spec/fusuma/plugin/detectors/tap_detector_spec.rb
|
260
|
+
- spec/fusuma/plugin/buffers/tap_buffer_spec.rb
|
261
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-pinch-and-hold-bug.txt
|
262
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-hold-invalid.txt
|
263
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-double-tap.txt
|
264
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-hold.txt
|
265
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-hold-invalid.txt
|
266
|
+
- spec/fusuma/plugin/parsers/evemu/2finger-tap.txt
|
267
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-hold.txt
|
268
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-hold.txt
|
269
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-tap.txt
|
270
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-hold-invalid.txt
|
271
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-hold.txt
|
272
|
+
- spec/fusuma/plugin/parsers/evemu/3finger-tap.txt
|
273
|
+
- spec/fusuma/plugin/parsers/evemu/1finger-tap.txt
|
274
|
+
- spec/fusuma/plugin/parsers/evemu/4finger-tap-after-palm-detected-bug.txt
|
275
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-pinch-and-hold-bug.txt
|
276
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-hold-invalid.txt
|
277
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-double-tap.txt
|
278
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-hold.txt
|
279
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-hold-invalid.txt
|
280
|
+
- spec/fusuma/plugin/parsers/1.10.4/2finger-tap.txt
|
281
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-hold.txt
|
282
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-hold.txt
|
283
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-tap.txt
|
284
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-hold-invalid.txt
|
285
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-hold.txt
|
286
|
+
- spec/fusuma/plugin/parsers/1.10.4/3finger-tap.txt
|
287
|
+
- spec/fusuma/plugin/parsers/1.10.4/1finger-tap.txt
|
288
|
+
- spec/fusuma/plugin/parsers/1.10.4/4finger-tap-after-palm-detected-bug.txt
|
289
|
+
- spec/fusuma/plugin/parsers/tap_parser_spec.rb
|
290
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-pinch-and-hold-bug.txt
|
291
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-hold-invalid.txt
|
292
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-double-tap.txt
|
293
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-hold.txt
|
294
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-hold-invalid.txt
|
295
|
+
- spec/fusuma/plugin/parsers/1.14.1/2finger-tap.txt
|
296
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-hold.txt
|
297
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-hold.txt
|
298
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-tap.txt
|
299
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-hold-invalid.txt
|
300
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-hold.txt
|
301
|
+
- spec/fusuma/plugin/parsers/1.14.1/3finger-tap.txt
|
302
|
+
- spec/fusuma/plugin/parsers/1.14.1/1finger-tap.txt
|
303
|
+
- spec/fusuma/plugin/parsers/1.14.1/4finger-tap-after-palm-detected-bug.txt
|
304
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-pinch-and-hold-bug.txt
|
305
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-hold-invalid.txt
|
306
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-double-tap.txt
|
307
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-hold.txt
|
308
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-hold-invalid.txt
|
309
|
+
- spec/fusuma/plugin/parsers/1.15.5/2finger-tap.txt
|
310
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-hold.txt
|
311
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-hold.txt
|
312
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-tap.txt
|
313
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-hold-invalid.txt
|
314
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-hold.txt
|
315
|
+
- spec/fusuma/plugin/parsers/1.15.5/3finger-tap.txt
|
316
|
+
- spec/fusuma/plugin/parsers/1.15.5/1finger-tap.txt
|
317
|
+
- spec/fusuma/plugin/parsers/1.15.5/4finger-tap-after-palm-detected-bug.txt
|
318
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-pinch-and-hold-bug.txt
|
319
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-hold-invalid.txt
|
320
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-double-tap.txt
|
321
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-hold.txt
|
322
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-hold-invalid.txt
|
323
|
+
- spec/fusuma/plugin/parsers/1.16.5/2finger-tap.txt
|
324
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-hold.txt
|
325
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-hold.txt
|
326
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-tap.txt
|
327
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-hold-invalid.txt
|
328
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-hold.txt
|
329
|
+
- spec/fusuma/plugin/parsers/1.16.5/3finger-tap.txt
|
330
|
+
- spec/fusuma/plugin/parsers/1.16.5/1finger-tap.txt
|
331
|
+
- spec/fusuma/plugin/parsers/1.16.5/4finger-tap-after-palm-detected-bug.txt
|
332
|
+
- spec/helpers/config_helper.rb
|
333
|
+
- spec/spec_helper.rb
|