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.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +11 -10
  3. data/bin/ugv +1 -1
  4. data/lib/ugv/version.rb +1 -1
  5. metadata +4 -4
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTk0OGVhMThmNjEzZTk4NzlmZmU1YjI3MmZlMGY3MDlmZjU0YmRiMw==
4
+ ZDk4M2Y0M2EzYjUwNGZhMzdhMWI5MWQ1NDZlZjg1MjQ2ZDNiYmVjMw==
5
5
  data.tar.gz: !binary |-
6
- NjE1YTQ2ZjE1MzBlMmFlODYyMzQ3ZjljZDA5MDg0ZWE2ZWY3MzM5OQ==
6
+ NmQ5NDM3NDg4M2NmY2QxODUxZDcyNjYyZjliOTM3ZjMwNDFjNjU4NQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTY2YTQ5MTJlNTM2MDlkYTVjOTBlZmQzYjEwMjljZDdmNGM1NTVkOWE2NTUz
10
- ZGQ1ZGY2MDlmNmRlYTU5MjVhYzg0NmE1MTgzNGIwNzVhZjI4ZTg3Mjk5ZTZj
11
- OThhNjlhMGY5Y2FjNTdkMzljZjZiMDkyMGRlN2ZiMmQ2MDg4OGQ=
9
+ ZjY5ZTJmYWZiNTYzYzYxNDM4MWZlODRkYmUxOTc3NzM2OTEwYjEwMzhiMjRk
10
+ MmE4Y2RmMTI4OWViYzE2N2I5NjRiNDQzYmFjMTVlYTc5ZGM5NTdkYzI2Y2Rl
11
+ NzllZTdhNzc3MWEwYWFlZjQ3M2M4NjQzNmZkOGJmMmFjZTMwY2E=
12
12
  data.tar.gz: !binary |-
13
- OTQ5MTNmODhlY2NiMzZjMDg1ZTg4Y2IyZDllYmI5YzRkOTcwNzFjZTlhNTZm
14
- MDIzMGM5YTUzMGFlZDRjZDNiNjQ5M2ZkMmM3OTZmN2Y3Mzc4YWUxNWIxYWVk
15
- ZGNiOTJlOGFlYzVjM2YyYzI5YmQ0YzdjZWE3ODIwMTg5YzBlZDk=
13
+ NmMxNTJiYTM4NjYwZDViYmFmMGEyMmExYTAzODUzOTFhNzM0ZGE2M2ZjNWE5
14
+ ODJkMThlOTc1ZjE1ZDg2ZGRkMWQ3NjdiNzFjNDY2NWM5MzU1ZTcyYjkxYzA5
15
+ YWU0Y2M5NDFkZjZlNDkxN2EyNzE2MzdkYTQ0OWVhM2IwMDk0MGU=
data/README.md CHANGED
@@ -1,24 +1,25 @@
1
- # Ug::Validation
1
+ # Ugv
2
2
 
3
- TODO: Write a gem description
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
- Add this line to your application's Gemfile:
7
+ Install it yourself as:
8
8
 
9
- gem 'ug-validation'
9
+ $ gem install ugv
10
10
 
11
- And then execute:
11
+ ## Usage
12
12
 
13
- $ bundle
13
+ Usage is very simple. There 2 primary commands, outline below
14
14
 
15
- Or install it yourself as:
16
15
 
17
- $ gem install ug-validation
16
+ Writing data:
18
17
 
19
- ## Usage
18
+ $ ugv write [api] [adminuser] [adminpassword] [orgname] [appname]
19
+
20
+ Verifying data:
20
21
 
21
- TODO: Write usage instructions here
22
+ $ ugv verify [api] [adminuser] [adminpassword] [orgname] [appname]
22
23
 
23
24
  ## Contributing
24
25
 
data/bin/ugv CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'gli'
4
4
  require 'usergrid_iron'
5
- #require 'ugv'
5
+ require 'ugv'
6
6
  include GLI::App
7
7
 
8
8
  program_desc 'Usergrid Validation Tools'
@@ -1,3 +1,3 @@
1
1
  module Ugv
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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.1
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-15 00:00:00.000000000 Z
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