robeaux 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.keep +0 -0
- data/README.md +53 -0
- data/fonts/FontAwesome.otf +0 -0
- data/fonts/fontawesome-webfont.eot +0 -0
- data/fonts/fontawesome-webfont.svg +414 -0
- data/fonts/fontawesome-webfont.ttf +0 -0
- data/fonts/fontawesome-webfont.woff +0 -0
- data/images/delete.png +0 -0
- data/index.html +39 -0
- data/javascripts/app.js +98 -0
- data/javascripts/vendor/angular-route.min.js +14 -0
- data/javascripts/vendor/angular.min.js +203 -0
- data/javascripts/vendor/bootstrap.min.js +7 -0
- data/javascripts/vendor/jquery.min.js +6 -0
- data/package.json +19 -0
- data/partials/robot-detail.html +139 -0
- data/partials/robot-device-detail.html +0 -0
- data/partials/robot-index.html +27 -0
- data/robeaux.gemspec +17 -0
- data/stylesheets/bootstrap.css +7118 -0
- data/stylesheets/font-awesome.css +1338 -0
- data/stylesheets/style.css +143 -0
- metadata +71 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2295255fd770f5391796ee8cf6f661b357789732
|
4
|
+
data.tar.gz: 62ef911d84385f624adc094f2db8280c4a222b4e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 444a23693b7113c3a75bb8617219e87810c5e2985d3e7388e2d51b498aebf4c4f0adf77d8cebbaa25fe86a3df28d94a6f0629abffe06f3478be4203ca357cf2c
|
7
|
+
data.tar.gz: cbca5cb246bdcbfa71e0f61d92180f7d1576ceccaa8dfeffbdd142e0d924e85e28e6e00aeae78b56eac429bd9657908c7f4d0a1806a162e9c369ef730a2128d8
|
data/.keep
ADDED
File without changes
|
data/README.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# Robeaux
|
2
|
+
|
3
|
+
Robeaux is a universal dashboard to your robotic devices. Like the admin pages for a router, but for robots.
|
4
|
+
|
5
|
+
Robeaux is written using [AngularJS](http://angularjs.org/), and provides a front-end to the API interface offered by [Cylon.js](http://cylonjs.com) and [Artoo](http://artoo.io). It looks like this:
|
6
|
+
|
7
|
+
![Robeaux Interface](http://i.imgur.com/VXZW2F0.png)
|
8
|
+
|
9
|
+
## How It Works
|
10
|
+
|
11
|
+
Thanks to using a standardized API based on the APIs of Artoo and Cylon.js, Robeaux can query or set values on with all the robots, and all of the devices connected to each robot, that are corrected to a compatible API server.
|
12
|
+
|
13
|
+
### Robots
|
14
|
+
|
15
|
+
|
16
|
+
### Connections
|
17
|
+
|
18
|
+
|
19
|
+
### Devices
|
20
|
+
|
21
|
+
|
22
|
+
## Pronunciation
|
23
|
+
|
24
|
+
Robeaux should be said aloud like "robo". We want to be the handsome user interface for all your robotic devices.
|
25
|
+
|
26
|
+
## Pushing new versions
|
27
|
+
|
28
|
+
Before you push a new release, make sure to create a tag:
|
29
|
+
|
30
|
+
git tag -m "[VERSION]" [VERSION]
|
31
|
+
|
32
|
+
And push it to GitHub
|
33
|
+
|
34
|
+
git push --tags
|
35
|
+
|
36
|
+
### RubyGems:
|
37
|
+
|
38
|
+
gem build robeaux.gemspec
|
39
|
+
gem push robeaux-[VERSION].gem
|
40
|
+
|
41
|
+
### NPM
|
42
|
+
|
43
|
+
npm publish ./
|
44
|
+
|
45
|
+
## LICENSE
|
46
|
+
|
47
|
+
Copyright (c) 2014 The Hybrid Group
|
48
|
+
|
49
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
50
|
+
|
51
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
52
|
+
|
53
|
+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
Binary file
|
Binary file
|