reiki 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/reiki.rb +0 -0
- data/reiki.gemspec +18 -0
- metadata +48 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b14dc8500fc6dac85d8fc2fd9d88d09d2e7598e0
|
4
|
+
data.tar.gz: 1c30765b28db7bdd5ff0994b1b6f9bd353dea05a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d92bfed0d76f573f0aac6766787ef61390b07cd9f8f06e43adf317dd0ed30728e4fd0f58279e569d48dd285dfd69c1b9a4622aaaa6f057c98bf93e3431862d84
|
7
|
+
data.tar.gz: 8dc38e5f9bb310ccaf036cb2b15052c7297fc55cf6154232b27439349f30ccc6e7208b04038909b8622929a52a64a27e7fb11bd2505b61156ea5a6d633b15446
|
data/lib/reiki.rb
ADDED
File without changes
|
data/reiki.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'reiki'
|
3
|
+
s.version = '0.0.0'
|
4
|
+
s.license = 'GPL-3.0'
|
5
|
+
s.summary = 'Reiki cross-platform device integration library'
|
6
|
+
s.description = 'Reiki provides cross-platform device access module. ' \
|
7
|
+
'Primarily Reiki abstracts USB and BlueTooth stacks and provides a simple ' \
|
8
|
+
'device detection and access framework. Access to and communication with ' \
|
9
|
+
'devices should operate the same on Linux, Windows, and OS X.'
|
10
|
+
s.authors = ['Rei Kagetsuki']
|
11
|
+
s.email = 'zero@tsuki.net'
|
12
|
+
s.homepage = 'http://www.tsuki.net/reiki'
|
13
|
+
|
14
|
+
s.required_ruby_version = '>= 2.3.3'
|
15
|
+
s.files = Dir.glob('lib/**/*.rb') +
|
16
|
+
['reiki.gemspec']
|
17
|
+
s.require_paths = ['lib']
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: reiki
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rei Kagetsuki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-10-28 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Reiki provides cross-platform device access module. Primarily Reiki abstracts
|
14
|
+
USB and BlueTooth stacks and provides a simple device detection and access framework.
|
15
|
+
Access to and communication with devices should operate the same on Linux, Windows,
|
16
|
+
and OS X.
|
17
|
+
email: zero@tsuki.net
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- lib/reiki.rb
|
23
|
+
- reiki.gemspec
|
24
|
+
homepage: http://www.tsuki.net/reiki
|
25
|
+
licenses:
|
26
|
+
- GPL-3.0
|
27
|
+
metadata: {}
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.3.3
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubyforge_project:
|
44
|
+
rubygems_version: 2.6.11
|
45
|
+
signing_key:
|
46
|
+
specification_version: 4
|
47
|
+
summary: Reiki cross-platform device integration library
|
48
|
+
test_files: []
|