fusuma 1.1 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 34fa207ae19eedf3b93a2150e37492c6b2cc3ad9edf8ddf1942f5bbc01d74cc0
4
- data.tar.gz: 7f559a9e0d91e26eef26e006ae35c80369be0d824bf227ec8e5ed1e3aa72e257
2
+ SHA1:
3
+ metadata.gz: 217ba27576aeda18f673e4519d622d564b5a41c0
4
+ data.tar.gz: 985359605435d4a14a9a2fa5e69baf4ce08f874c
5
5
  SHA512:
6
- metadata.gz: a4c983f73a657a982bc11054e1c21f8980d56173db1a8d026980bc1bc3199d2638e848413bdd6db409face464ed441e31b35f29fc911744c127e26c711ce40cb
7
- data.tar.gz: eeb51246d5764fe63a7d0097e6e468b864a9e9c95c9c30b2f5a73520f5c773fc08f8173fb8512e496b94c28d5a19919c8992347198312f9bd1e3ac8f32aa1ec7
6
+ metadata.gz: 3ad557b7cd54f0647160280a9945d37c5aa1770b2002fe8bdef8ce9c1932da03584c8931795833e41b892fb1837fcb735b91e0b38bad6dcda911ee0fd8d2bb12
7
+ data.tar.gz: b7f9b22cc2e22ff13387cbc6301331ae2e00f6af5ed7da20830a452b7a1eac839f6d0297893a2e400559278ddcbceec4ed71d706579b9561079806659327f45c
@@ -1,8 +1,21 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/iberianpig/fusuma/tree/HEAD)
3
+ ## [v1.1](https://github.com/iberianpig/fusuma/tree/v1.1) (2019-10-12)
4
+ [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.0...v1.1)
4
5
 
5
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.0...HEAD)
6
+ ## [v1.0](https://github.com/iberianpig/fusuma/tree/v1.0) (2019-10-12)
7
+ [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.1...v1.0)
8
+
9
+ **Merged pull requests:**
10
+
11
+ - Update rake requirement from ~\> 12.3 to ~\> 13.0 [\#136](https://github.com/iberianpig/fusuma/pull/136) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
12
+ - Fixed Spelling mistake [\#128](https://github.com/iberianpig/fusuma/pull/128) ([thomascrha](https://github.com/thomascrha))
13
+ - \[Readme\] Added step to install Ruby [\#127](https://github.com/iberianpig/fusuma/pull/127) ([mmoraes-rafael](https://github.com/mmoraes-rafael))
14
+ - Feature/plugins refactor generator [\#126](https://github.com/iberianpig/fusuma/pull/126) ([iberianpig](https://github.com/iberianpig))
15
+ - Plugin Based Architecture [\#116](https://github.com/iberianpig/fusuma/pull/116) ([iberianpig](https://github.com/iberianpig))
16
+
17
+ ## [v0.11.1](https://github.com/iberianpig/fusuma/tree/v0.11.1) (2019-05-27)
18
+ [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.0...v0.11.1)
6
19
 
7
20
  **Merged pull requests:**
8
21
 
@@ -26,7 +26,7 @@ module Fusuma
26
26
  # @return [Array]
27
27
  def keep_device_ids
28
28
  @keep_device_ids ||= Device.all.select do |device|
29
- keep_device_names.any? { |name| device.name.match? name }
29
+ keep_device_names.any? { |name| device.name.match(name) }
30
30
  end.map(&:id)
31
31
  end
32
32
 
@@ -13,7 +13,7 @@ module Fusuma
13
13
 
14
14
  def require_siblings_from_local
15
15
  search_key = File.join('../../', plugin_dir_name, '*.rb')
16
- Pathname.new(__dir__).glob(search_key).each do |siblings_plugin|
16
+ Dir.glob(File.expand_path("#{__dir__}/#{search_key}")).each do |siblings_plugin|
17
17
  require siblings_plugin
18
18
  end
19
19
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fusuma
4
- VERSION = '1.1'
4
+ VERSION = '1.2'
5
5
  end
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: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - iberianpig
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-12 00:00:00.000000000 Z
11
+ date: 2019-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -228,7 +228,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
228
  - !ruby/object:Gem::Version
229
229
  version: '0'
230
230
  requirements: []
231
- rubygems_version: 3.0.3
231
+ rubyforge_project:
232
+ rubygems_version: 2.5.1
232
233
  signing_key:
233
234
  specification_version: 4
234
235
  summary: Multitouch gestures with libinput dirver on X11, Linux