fusuma 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -6
- data/fusuma.gemspec +15 -12
- data/lib/fusuma/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ced088774399b4001a99c8493d342aead34f76f
|
4
|
+
data.tar.gz: cd8a5256825aeb286a47c13bf749d04d78ba0056
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98c412c06c372d056c5a5fddcbf29eda51e7a201d6f9c1095d792e6258e25afed259c537128dc4c2eeca4f55fe5bf2f1fb0b4bb989abdf36b55761348bbb2bd2
|
7
|
+
data.tar.gz: 464f9d0b606285a7beac89eeb475de280140764519c6d6976ed8e5acfe04f2aa11969db66c560b448c3acbc3115064a9f11f4dde624d5df65dc627d074891175
|
data/README.md
CHANGED
@@ -67,12 +67,6 @@ pinch:
|
|
67
67
|
shortcut: 'ctrl+minus'
|
68
68
|
```
|
69
69
|
|
70
|
-
## Development
|
71
|
-
|
72
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
73
|
-
|
74
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
75
|
-
|
76
70
|
## Contributing
|
77
71
|
|
78
72
|
Bug reports and pull requests are welcome on GitHub at https://github.com/iberianpig/fusuma. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/fusuma.gemspec
CHANGED
@@ -4,24 +4,27 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'fusuma/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
7
|
+
spec.name = 'fusuma'
|
8
8
|
spec.version = Fusuma::VERSION
|
9
|
-
spec.authors = [
|
10
|
-
spec.email = [
|
9
|
+
spec.authors = ['iberianpig']
|
10
|
+
spec.email = ['yhkyky@gmail.com']
|
11
11
|
|
12
|
-
spec.summary =
|
13
|
-
spec.
|
14
|
-
|
12
|
+
spec.summary = 'Multitouch gestures with libinput dirver on X11, Linux'
|
13
|
+
spec.description = 'Fusuma is multitouch gesture recognizer. This gem makes\
|
14
|
+
your linux PC able to recognize swipes or pinchs and assign shortcuts to \
|
15
|
+
them. Read installation(https://github.com/iberianpig/fusuma#installation).'
|
16
|
+
spec.homepage = 'https://github.com/iberianpig/fusuma'
|
17
|
+
spec.license = 'MIT'
|
15
18
|
|
16
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
20
|
f.match(%r{^(test|spec|features)/})
|
18
21
|
end
|
19
|
-
spec.bindir =
|
22
|
+
spec.bindir = 'exe'
|
20
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
-
spec.require_paths = [
|
24
|
+
spec.require_paths = ['lib']
|
22
25
|
|
23
|
-
spec.add_development_dependency
|
24
|
-
spec.add_development_dependency
|
25
|
-
spec.add_development_dependency
|
26
|
-
spec.add_development_dependency
|
26
|
+
spec.add_development_dependency 'bundler', '~> 1.13'
|
27
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
28
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
29
|
+
spec.add_development_dependency 'pry-byebug'
|
27
30
|
end
|
data/lib/fusuma/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusuma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- iberianpig
|
@@ -66,7 +66,10 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description:
|
69
|
+
description: |-
|
70
|
+
Fusuma is multitouch gesture recognizer. This gem makes\
|
71
|
+
your linux PC able to recognize swipes or pinchs and assign shortcuts to \
|
72
|
+
them. Read installation(https://github.com/iberianpig/fusuma#installation).
|
70
73
|
email:
|
71
74
|
- yhkyky@gmail.com
|
72
75
|
executables:
|