rawhid 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae317d32d254b479e0f35d2e355a6c292346339e
4
- data.tar.gz: 9dd50ae746ab6bee344dbac63154724813989712
3
+ metadata.gz: 848df0dcb62cdabad2a5c6c7945f2e6b5e80bcab
4
+ data.tar.gz: 5293f3945be0aa868976db57129ee4e536245bb6
5
5
  SHA512:
6
- metadata.gz: 2e1de30128078f0dd450937674b0813c4e26da546a14140781323928571da23320a5baeffe304e366b41a20723eb98f2c415181f45f42eb70ee5d287a3bd5f67
7
- data.tar.gz: d7fbadf4c53c229d7466f83d4bb595ebff898add14027330faa1a2c832e31f92608a242f09cf97f7a72f39edf5859f22b378fd54b1e8198ada4dbf2825dacacc
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 = "rawhid"
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
@@ -1,3 +1,3 @@
1
1
  class RawHID
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/lib/rawhid.rb CHANGED
@@ -1,2 +1,2 @@
1
1
  require "rawhid/version"
2
- require "rawhid/rawhid"
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/rawhid/extconf.rb"]
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.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/rawhid/extconf.rb
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/rawhid/Makefile
86
- - ext/rawhid/Makefile.bundled
87
- - ext/rawhid/extconf.h
88
- - ext/rawhid/extconf.rb
89
- - ext/rawhid/hid.h
90
- - ext/rawhid/hid_LINUX.c
91
- - ext/rawhid/hid_MACOSX.c
92
- - ext/rawhid/hid_WINDOWS.c
93
- - ext/rawhid/rawhid.c
94
- - ext/rawhid/rawhid_test.c
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