ugv 0.0.1 → 0.0.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 +8 -8
- data/README.md +11 -10
- data/bin/ugv +1 -1
- data/lib/ugv/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDk4M2Y0M2EzYjUwNGZhMzdhMWI5MWQ1NDZlZjg1MjQ2ZDNiYmVjMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NmQ5NDM3NDg4M2NmY2QxODUxZDcyNjYyZjliOTM3ZjMwNDFjNjU4NQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjY5ZTJmYWZiNTYzYzYxNDM4MWZlODRkYmUxOTc3NzM2OTEwYjEwMzhiMjRk
|
|
10
|
+
MmE4Y2RmMTI4OWViYzE2N2I5NjRiNDQzYmFjMTVlYTc5ZGM5NTdkYzI2Y2Rl
|
|
11
|
+
NzllZTdhNzc3MWEwYWFlZjQ3M2M4NjQzNmZkOGJmMmFjZTMwY2E=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NmMxNTJiYTM4NjYwZDViYmFmMGEyMmExYTAzODUzOTFhNzM0ZGE2M2ZjNWE5
|
|
14
|
+
ODJkMThlOTc1ZjE1ZDg2ZGRkMWQ3NjdiNzFjNDY2NWM5MzU1ZTcyYjkxYzA5
|
|
15
|
+
YWU0Y2M5NDFkZjZlNDkxN2EyNzE2MzdkYTQ0OWVhM2IwMDk0MGU=
|
data/README.md
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Ugv
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A simple gem that will write data to a usergrid installation, then verify the data was written correctly and can be retrieved.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Install it yourself as:
|
|
8
8
|
|
|
9
|
-
gem
|
|
9
|
+
$ gem install ugv
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## Usage
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Usage is very simple. There 2 primary commands, outline below
|
|
14
14
|
|
|
15
|
-
Or install it yourself as:
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
Writing data:
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
$ ugv write [api] [adminuser] [adminpassword] [orgname] [appname]
|
|
19
|
+
|
|
20
|
+
Verifying data:
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
$ ugv verify [api] [adminuser] [adminpassword] [orgname] [appname]
|
|
22
23
|
|
|
23
24
|
## Contributing
|
|
24
25
|
|
data/bin/ugv
CHANGED
data/lib/ugv/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ugv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Todd Nine
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gli
|
|
@@ -89,12 +89,12 @@ extensions: []
|
|
|
89
89
|
extra_rdoc_files: []
|
|
90
90
|
files:
|
|
91
91
|
- .gitignore
|
|
92
|
+
- .idea/.name
|
|
93
|
+
- .idea/.rakeTasks
|
|
92
94
|
- .idea/encodings.xml
|
|
93
95
|
- .idea/misc.xml
|
|
94
96
|
- .idea/modules.xml
|
|
95
97
|
- .idea/scopes/scope_settings.xml
|
|
96
|
-
- .idea/ug-validation.iml
|
|
97
|
-
- .idea/vcs.xml
|
|
98
98
|
- Gemfile
|
|
99
99
|
- LICENSE.txt
|
|
100
100
|
- README.md
|