univedo-shell 0.4.0 → 0.5.0
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 +4 -4
- data/README.md +1 -1
- data/bin/univedo-shell +1 -1
- data/lib/univedo-shell.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a272b40647e04d3b60fe9ab954d2e9095725db5
|
|
4
|
+
data.tar.gz: 97f113b0f4bc4f81a20a8d051e4dbdbfc8d31822
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfd9a338d88ef1131cdd048b55775c2eba01a276c89065369bf87aef7883155a06d811de60b71126ed67ef06d1b0ea950626dfb954689d0650bc69615a4407a9
|
|
7
|
+
data.tar.gz: 4209f86b6364a13924ea34dc17ad3b789c625ce7deb845aa81f0ecd1e7b31df1fa9f1e1595ca40598e33772afebaf186a45bedfceb670bcd6bc390354aefd422
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ univedo-shell -u path/to/file.uts ws://localhost/f8018f09-fb75-4d3d-8e11-44b2dc7
|
|
|
15
15
|
Then just type your SQL queries:
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
|
-
$ univedo-shell ws://localhost
|
|
18
|
+
$ univedo-shell ws://localhost f8018f09-fb75-4d3d-8e11-44b2dc796130 468145f2-4ebb-405b-8a42-bcbab94cd0d0
|
|
19
19
|
Connected.
|
|
20
20
|
>> SELECT * FROM people LIMIT 2
|
|
21
21
|
+------------+-----------------+----------------------+----+--------+-----------------------+
|
data/bin/univedo-shell
CHANGED
|
@@ -48,7 +48,7 @@ options[:perspective] = ARGV.shift
|
|
|
48
48
|
#################################
|
|
49
49
|
|
|
50
50
|
connection = Runivedo::Connection.new options[:url]
|
|
51
|
-
session = connection.get_session(options[:bucket], {})
|
|
51
|
+
session = connection.get_session(options[:bucket], {username: "marvin"})
|
|
52
52
|
puts "Connected."
|
|
53
53
|
session.apply_uts(File.read(options[:uts])) if options[:uts]
|
|
54
54
|
perspective = session.get_perspective(options[:perspective])
|
data/lib/univedo-shell.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: univedo-shell
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lucas Clemente
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coolline
|
|
@@ -144,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
144
144
|
version: '0'
|
|
145
145
|
requirements: []
|
|
146
146
|
rubyforge_project:
|
|
147
|
-
rubygems_version: 2.4.
|
|
147
|
+
rubygems_version: 2.4.5
|
|
148
148
|
signing_key:
|
|
149
149
|
specification_version: 4
|
|
150
150
|
summary: Simple SQL shell for debugging univedo.
|