rawhid 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/{rawhid → teensy_rawhid}/Makefile +0 -0
- data/ext/{rawhid → teensy_rawhid}/Makefile.bundled +0 -0
- data/ext/{rawhid → teensy_rawhid}/extconf.h +0 -0
- data/ext/{rawhid → teensy_rawhid}/extconf.rb +2 -2
- data/ext/{rawhid → teensy_rawhid}/hid.h +0 -0
- data/ext/{rawhid → teensy_rawhid}/hid_LINUX.c +0 -0
- data/ext/{rawhid → teensy_rawhid}/hid_MACOSX.c +0 -0
- data/ext/{rawhid → teensy_rawhid}/hid_WINDOWS.c +0 -0
- data/ext/{rawhid → teensy_rawhid}/rawhid_test.c +0 -0
- data/ext/{rawhid/rawhid.c → teensy_rawhid/teensy_rawhid.c} +0 -0
- data/lib/rawhid/version.rb +1 -1
- data/lib/rawhid.rb +1 -1
- data/rawhid.gemspec +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 848df0dcb62cdabad2a5c6c7945f2e6b5e80bcab
|
4
|
+
data.tar.gz: 5293f3945be0aa868976db57129ee4e536245bb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 555796f0cbcde7988c363d713557afaa082b48577d2746c39ad2c5f4d8da7fb47218936164728d319c08a9dd200fb089c91c0bce849f9d623a92875c92d6a278
|
7
|
+
data.tar.gz: b31ff7e7fcd8193446bbac61a7bc3d46c3b46d9d73e94180882fc9f14c8a8065a71020be063f1b5de703bf3098a93ee0a356a98805297ec24337b4ea1c1ae343
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require "mkmf"
|
2
2
|
require "rubygems"
|
3
3
|
|
4
|
-
extension_name = "
|
4
|
+
extension_name = "teensy_rawhid"
|
5
5
|
|
6
6
|
$srcs = ["#{extension_name}.c"]
|
7
7
|
|
@@ -16,4 +16,4 @@ end
|
|
16
16
|
|
17
17
|
|
18
18
|
create_header
|
19
|
-
create_makefile extension_name
|
19
|
+
create_makefile "#{extension_name}"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/rawhid/version.rb
CHANGED
data/lib/rawhid.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
require "rawhid/version"
|
2
|
-
require "
|
2
|
+
require "teensy_rawhid"
|
data/rawhid.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.bindir = "exe"
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
-
spec.extensions = ["ext/
|
23
|
+
spec.extensions = ["ext/teensy_rawhid/extconf.rb"]
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
26
|
spec.add_development_dependency "bundler", "~> 1.15"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rawhid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leo P.
|
@@ -71,7 +71,7 @@ email:
|
|
71
71
|
- junk@slact.net
|
72
72
|
executables: []
|
73
73
|
extensions:
|
74
|
-
- ext/
|
74
|
+
- ext/teensy_rawhid/extconf.rb
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
77
77
|
- ".gitignore"
|
@@ -82,16 +82,16 @@ files:
|
|
82
82
|
- Rakefile
|
83
83
|
- bin/console
|
84
84
|
- bin/setup
|
85
|
-
- ext/
|
86
|
-
- ext/
|
87
|
-
- ext/
|
88
|
-
- ext/
|
89
|
-
- ext/
|
90
|
-
- ext/
|
91
|
-
- ext/
|
92
|
-
- ext/
|
93
|
-
- ext/
|
94
|
-
- ext/
|
85
|
+
- ext/teensy_rawhid/Makefile
|
86
|
+
- ext/teensy_rawhid/Makefile.bundled
|
87
|
+
- ext/teensy_rawhid/extconf.h
|
88
|
+
- ext/teensy_rawhid/extconf.rb
|
89
|
+
- ext/teensy_rawhid/hid.h
|
90
|
+
- ext/teensy_rawhid/hid_LINUX.c
|
91
|
+
- ext/teensy_rawhid/hid_MACOSX.c
|
92
|
+
- ext/teensy_rawhid/hid_WINDOWS.c
|
93
|
+
- ext/teensy_rawhid/rawhid_test.c
|
94
|
+
- ext/teensy_rawhid/teensy_rawhid.c
|
95
95
|
- lib/rawhid.rb
|
96
96
|
- lib/rawhid/version.rb
|
97
97
|
- rawhid.gemspec
|