ruby-usb 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +504 -0
- data/History.txt +15 -0
- data/Manifest.txt +11 -0
- data/README.txt +55 -0
- data/README.win32 +57 -0
- data/Rakefile +33 -0
- data/ext/constants.h +86 -0
- data/ext/extconf.rb +28 -0
- data/ext/usb.c +931 -0
- data/lib/usb.rb +420 -0
- data/sample/usb-power +46 -0
- metadata +70 -0
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-usb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Aslak Helles\xC3\xB8y"
|
8
|
+
- Tanaka Akira
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2008-03-29 23:00:00 +01:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: ruby-usb is a libusb binding library for Ruby.
|
18
|
+
email:
|
19
|
+
- aslak.hellesoy@gmail.com
|
20
|
+
- akr@fsij.org
|
21
|
+
executables: []
|
22
|
+
|
23
|
+
extensions:
|
24
|
+
- ext/extconf.rb
|
25
|
+
extra_rdoc_files:
|
26
|
+
- History.txt
|
27
|
+
- Manifest.txt
|
28
|
+
- README.txt
|
29
|
+
files:
|
30
|
+
- COPYING
|
31
|
+
- History.txt
|
32
|
+
- Manifest.txt
|
33
|
+
- README.txt
|
34
|
+
- README.win32
|
35
|
+
- Rakefile
|
36
|
+
- ext/constants.h
|
37
|
+
- ext/extconf.rb
|
38
|
+
- ext/usb.c
|
39
|
+
- lib/usb.rb
|
40
|
+
- sample/usb-power
|
41
|
+
has_rdoc: true
|
42
|
+
homepage: http://www.a-k-r.org/ruby-usb/
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options:
|
45
|
+
- --main
|
46
|
+
- README.txt
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
- ext
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project: ruby-usb
|
65
|
+
rubygems_version: 1.0.1
|
66
|
+
signing_key:
|
67
|
+
specification_version: 2
|
68
|
+
summary: Tanaka Akira's ruby-usb packaged as gems
|
69
|
+
test_files: []
|
70
|
+
|