artoo-leapmotion 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/.travis.yml +6 -0
- data/Gemfile.lock +6 -6
- data/README.md +9 -11
- data/artoo-leapmotion.gemspec +2 -2
- data/lib/artoo-leapmotion/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9934e3475165f69a310442121a1e5b32f778db9
|
4
|
+
data.tar.gz: 94250ddfdb3e890ed61536fc039056ba0e48fb54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34e58d420b7da36cab90fa8133e0c1c2a4995e34178a93f06247c8fc4914a3a52120d2f27ff6c1e0f84d8398ba544a146188327fb97a3fe34c02bd0a4af264a8
|
7
|
+
data.tar.gz: 08e8aef2688a5d7803c847775cbd2a37c01fedf5179f6cfa929992b31f841a4cdf960c64a66c04cf80e4eb18a275264af0f78f2117282ae811147f6a51715dcf
|
data/.travis.yml
ADDED
data/Gemfile.lock
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
artoo-leapmotion (0.1.
|
5
|
-
artoo (~> 1.0.0
|
4
|
+
artoo-leapmotion (0.1.2)
|
5
|
+
artoo (~> 1.0.0)
|
6
6
|
hybridgroup-celluloid-websocket-client
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
artoo (1.0.0
|
11
|
+
artoo (1.0.0)
|
12
12
|
celluloid (~> 0.14.1)
|
13
13
|
celluloid-io (~> 0.14.1)
|
14
14
|
multi_json (~> 1.6)
|
@@ -36,8 +36,8 @@ GEM
|
|
36
36
|
minitest-happy (1.0.0)
|
37
37
|
mocha (0.14.0)
|
38
38
|
metaclass (~> 0.0.1)
|
39
|
-
multi_json (1.7.
|
40
|
-
nio4r (0.
|
39
|
+
multi_json (1.7.9)
|
40
|
+
nio4r (0.5.0)
|
41
41
|
pry (0.9.12.2)
|
42
42
|
coderay (~> 1.0.5)
|
43
43
|
method_source (~> 0.8)
|
@@ -53,7 +53,7 @@ GEM
|
|
53
53
|
slop (3.4.6)
|
54
54
|
thor (0.18.1)
|
55
55
|
timers (1.1.0)
|
56
|
-
websocket-driver (0.2.
|
56
|
+
websocket-driver (0.2.3)
|
57
57
|
websocket_parser (0.1.4)
|
58
58
|
http
|
59
59
|
|
data/README.md
CHANGED
@@ -51,26 +51,24 @@ end
|
|
51
51
|
|
52
52
|
### OSX
|
53
53
|
|
54
|
-
|
54
|
+
This driver works out of the box with the vanilla installation of the Leap Motion Software that you get in their [Setup Guide](https://www.leapmotion.com/setup ).
|
55
55
|
|
56
|
-
|
56
|
+
The main steps are:
|
57
|
+
|
58
|
+
- Run `Leap Motion.app`
|
59
|
+
- Connect your Computer and Leap Motion Controller.
|
60
|
+
- Connect to the device via Artoo.
|
57
61
|
|
58
62
|
### Ubuntu
|
59
63
|
|
60
|
-
The Linux download of the Leap Motion software can be obtained from https://developer.leapmotion.com/downloads (requires free signup)
|
64
|
+
The Linux download of the Leap Motion software can be obtained from [Leap Motion Dev Center](https://developer.leapmotion.com/downloads) (requires free signup)
|
61
65
|
|
62
66
|
The main steps are:
|
67
|
+
|
68
|
+
- Run the `leapd` daemon.
|
63
69
|
- Connect your computer and the Leap Motion controller
|
64
70
|
- Connect to the device via Artoo
|
65
71
|
|
66
|
-
You will need to run the `leapd` daemon in order to connect your Artoo code to your Leap Motion controller.
|
67
|
-
|
68
|
-
```
|
69
|
-
$ leapd
|
70
|
-
```
|
71
|
-
|
72
|
-
Once your computer is communcating with the Leap Motion controller, the `leapd` program exposes a websocket-based interface to receive data.
|
73
|
-
|
74
72
|
### Windows
|
75
73
|
|
76
74
|
The normal Windows download of the Leap Motion software from https://www.leapmotion.com/setup should work with Artoo.
|
data/artoo-leapmotion.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.authors = ["Ron Evans"]
|
10
10
|
s.email = ["artoo@hybridgroup.com"]
|
11
|
-
s.homepage = "https://github.com/hybridgroup/artoo-"
|
11
|
+
s.homepage = "https://github.com/hybridgroup/artoo-leapmotion"
|
12
12
|
s.summary = %q{Artoo adaptor and driver for Leap Motion}
|
13
13
|
s.description = %q{Artoo adaptor and driver for Leap Motion}
|
14
14
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
20
|
s.require_paths = ["lib"]
|
21
21
|
|
22
|
-
s.add_runtime_dependency 'artoo', '~> 1.0.0
|
22
|
+
s.add_runtime_dependency 'artoo', '~> 1.0.0'
|
23
23
|
s.add_runtime_dependency 'hybridgroup-celluloid-websocket-client'
|
24
24
|
s.add_development_dependency 'minitest', '~> 5.0'
|
25
25
|
s.add_development_dependency 'minitest-happy'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: artoo-leapmotion
|
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
|
- Ron Evans
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: artoo
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.0.0
|
19
|
+
version: 1.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.0.0
|
26
|
+
version: 1.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: hybridgroup-celluloid-websocket-client
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,6 +87,7 @@ executables: []
|
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
89
89
|
files:
|
90
|
+
- .travis.yml
|
90
91
|
- Gemfile
|
91
92
|
- Gemfile.lock
|
92
93
|
- LICENSE
|
@@ -106,7 +107,7 @@ files:
|
|
106
107
|
- test/adaptors/leapmotion_adaptor_test.rb
|
107
108
|
- test/drivers/leapmotion_driver_test.rb
|
108
109
|
- test/test_helper.rb
|
109
|
-
homepage: https://github.com/hybridgroup/artoo-
|
110
|
+
homepage: https://github.com/hybridgroup/artoo-leapmotion
|
110
111
|
licenses: []
|
111
112
|
metadata: {}
|
112
113
|
post_install_message:
|