--- !ruby/object:Gem::Specification
name: fusuma
version: !ruby/object:Gem::Version
  version: 2.0.3
platform: ruby
authors:
- iberianpig
autorequire:
bindir: exe
cert_chain: []
date: 2021-04-20 00:00:00.000000000 Z
dependencies: []
description: Fusuma is multitouch gesture recognizer. This gem makes your touchpad
  on Linux able to recognize swipes or pinchs and assign command to them. Read installation
  on Github(https://github.com/iberianpig/fusuma#installation).
email:
- yhkyky@gmail.com
executables:
- fusuma
extensions: []
extra_rdoc_files: []
files:
- LICENSE
- README.md
- bin/console
- bin/setup
- exe/fusuma
- fusuma.gemspec
- lib/fusuma.rb
- lib/fusuma/config.rb
- lib/fusuma/config.yml
- lib/fusuma/config/index.rb
- lib/fusuma/config/searcher.rb
- lib/fusuma/config/yaml_duplication_checker.rb
- lib/fusuma/custom_process.rb
- lib/fusuma/device.rb
- lib/fusuma/environment.rb
- lib/fusuma/hash_support.rb
- lib/fusuma/libinput_command.rb
- lib/fusuma/multi_logger.rb
- lib/fusuma/plugin/base.rb
- lib/fusuma/plugin/buffers/buffer.rb
- lib/fusuma/plugin/buffers/gesture_buffer.rb
- lib/fusuma/plugin/buffers/timer_buffer.rb
- lib/fusuma/plugin/detectors/detector.rb
- lib/fusuma/plugin/detectors/pinch_detector.rb
- lib/fusuma/plugin/detectors/rotate_detector.rb
- lib/fusuma/plugin/detectors/swipe_detector.rb
- lib/fusuma/plugin/events/event.rb
- lib/fusuma/plugin/events/records/context_record.rb
- lib/fusuma/plugin/events/records/gesture_record.rb
- lib/fusuma/plugin/events/records/index_record.rb
- lib/fusuma/plugin/events/records/record.rb
- lib/fusuma/plugin/events/records/text_record.rb
- lib/fusuma/plugin/executors/command_executor.rb
- lib/fusuma/plugin/executors/executor.rb
- lib/fusuma/plugin/filters/filter.rb
- lib/fusuma/plugin/filters/libinput_device_filter.rb
- lib/fusuma/plugin/filters/libinput_timeout_filter.rb
- lib/fusuma/plugin/inputs/input.rb
- lib/fusuma/plugin/inputs/libinput_command_input.rb
- lib/fusuma/plugin/inputs/timer_input.rb
- lib/fusuma/plugin/manager.rb
- lib/fusuma/plugin/parsers/libinput_gesture_parser.rb
- lib/fusuma/plugin/parsers/parser.rb
- lib/fusuma/string_support.rb
- lib/fusuma/version.rb
- spec/helpers/config_helper.rb
- spec/lib/config/searcher_spec.rb
- spec/lib/config_spec.rb
- spec/lib/custom_process_spec.rb
- spec/lib/device_spec.rb
- spec/lib/dummy_config.yml
- spec/lib/fusuma_spec.rb
- spec/lib/libinput-list-devices_iberianpig-XPS-9360.txt
- spec/lib/libinput-list-devices_magic_trackpad.txt
- spec/lib/libinput-list-devices_razer_razer_blade.txt
- spec/lib/libinput-list-devices_thejinx0r.txt
- spec/lib/libinput-list-devices_unavailable.txt
- spec/lib/libinput_command_spec.rb
- spec/lib/plugin/base_spec.rb
- spec/lib/plugin/buffers/buffer_spec.rb
- spec/lib/plugin/buffers/dummy_buffer.rb
- spec/lib/plugin/buffers/gesture_buffer_spec.rb
- spec/lib/plugin/detectors/detector_spec.rb
- spec/lib/plugin/detectors/dummy_detector.rb
- spec/lib/plugin/detectors/pinch_detector_spec.rb
- spec/lib/plugin/detectors/rotate_detector_spec.rb
- spec/lib/plugin/detectors/swipe_detector_spec.rb
- spec/lib/plugin/events/event_spec.rb
- spec/lib/plugin/events/records/gesture_record_spec.rb
- spec/lib/plugin/events/records/record_spec.rb
- spec/lib/plugin/events/records/text_record_spec.rb
- spec/lib/plugin/executors/command_executor_spec.rb
- spec/lib/plugin/executors/executor_spec.rb
- spec/lib/plugin/filters/filter_spec.rb
- spec/lib/plugin/filters/libinput_filter_spec.rb
- spec/lib/plugin/inputs/input_spec.rb
- spec/lib/plugin/inputs/libinput_command_input_spec.rb
- spec/lib/plugin/inputs/timer_input_spec.rb
- spec/lib/plugin/manager_spec.rb
- spec/lib/plugin/parsers/parser_spec.rb
- spec/spec_helper.rb
homepage: https://github.com/iberianpig/fusuma
licenses:
- MIT
metadata:
  yard.run: yri
post_install_message:
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  requirements:
  - - ">="
    - !ruby/object:Gem::Version
      version: 2.5.1
required_rubygems_version: !ruby/object:Gem::Requirement
  requirements:
  - - ">="
    - !ruby/object:Gem::Version
      version: '0'
requirements: []
rubygems_version: 3.1.4
signing_key:
specification_version: 4
summary: Multitouch gestures with libinput driver, Linux
test_files:
- spec/lib/device_spec.rb
- spec/lib/config/searcher_spec.rb
- spec/lib/libinput-list-devices_iberianpig-XPS-9360.txt
- spec/lib/dummy_config.yml
- spec/lib/libinput-list-devices_magic_trackpad.txt
- spec/lib/custom_process_spec.rb
- spec/lib/plugin/base_spec.rb
- spec/lib/plugin/inputs/libinput_command_input_spec.rb
- spec/lib/plugin/inputs/input_spec.rb
- spec/lib/plugin/inputs/timer_input_spec.rb
- spec/lib/plugin/events/records/record_spec.rb
- spec/lib/plugin/events/records/gesture_record_spec.rb
- spec/lib/plugin/events/records/text_record_spec.rb
- spec/lib/plugin/events/event_spec.rb
- spec/lib/plugin/filters/libinput_filter_spec.rb
- spec/lib/plugin/filters/filter_spec.rb
- spec/lib/plugin/detectors/detector_spec.rb
- spec/lib/plugin/detectors/swipe_detector_spec.rb
- spec/lib/plugin/detectors/rotate_detector_spec.rb
- spec/lib/plugin/detectors/pinch_detector_spec.rb
- spec/lib/plugin/detectors/dummy_detector.rb
- spec/lib/plugin/manager_spec.rb
- spec/lib/plugin/buffers/dummy_buffer.rb
- spec/lib/plugin/buffers/buffer_spec.rb
- spec/lib/plugin/buffers/gesture_buffer_spec.rb
- spec/lib/plugin/parsers/parser_spec.rb
- spec/lib/plugin/executors/executor_spec.rb
- spec/lib/plugin/executors/command_executor_spec.rb
- spec/lib/libinput-list-devices_unavailable.txt
- spec/lib/libinput_command_spec.rb
- spec/lib/fusuma_spec.rb
- spec/lib/libinput-list-devices_razer_razer_blade.txt
- spec/lib/libinput-list-devices_thejinx0r.txt
- spec/lib/config_spec.rb
- spec/helpers/config_helper.rb
- spec/spec_helper.rb