sdbcli 0.2.9 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +4 -1
  2. data/bin/sdbcli +4 -1
  3. metadata +4 -4
data/README CHANGED
@@ -52,7 +52,10 @@ https://bitbucket.org/winebarrel/sdbcli
52
52
 
53
53
  SELECT output_list FROM domain_name [where expression] [sort_instructions] [limit limit]
54
54
  queries using the SELECT statement
55
-
55
+
56
+ DESC domain_name
57
+ displays information about the domain;
58
+
56
59
  ap-northeast-1> select * from test;
57
60
  ---
58
61
  - [itemname1, {attr1: val1, attr2: val2}]
data/bin/sdbcli CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  $LOAD_PATH << File.join(File.expand_path(File.dirname(__FILE__)), '..', 'lib')
3
3
 
4
- Version = '0.2.9'
4
+ Version = '0.3.0'
5
5
  HISTORY_FILE = File.join((ENV['HOME'] || ENV['USERPROFILE'] || '.'), '.sdbcli_history')
6
6
 
7
7
  require 'rubygems'
@@ -122,6 +122,9 @@ DELETE [attr1, ...] FROM domain_name itemName = '...'
122
122
  SELECT output_list FROM domain_name [where expression] [sort_instructions] [limit limit]
123
123
  queries using the SELECT statement
124
124
 
125
+ DESC domain_name
126
+ displays information about the domain;
127
+
125
128
  EOS
126
129
  end
127
130
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sdbcli
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 9
10
- version: 0.2.9
8
+ - 3
9
+ - 0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - winebarrel