norikra-client-jruby 0.1.0-java → 0.1.1-java
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 +2 -2
- data/lib/norikra-client.rb +1 -0
- data/lib/norikra/client/version.rb +1 -1
- data/norikra-client.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 238c37db2b823b0565664aa791aefc558bea3966
|
|
4
|
+
data.tar.gz: 7c3e5b7382fe54e6fa2231337a8ab8679e98238c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e18c0e6b0d93a9ce16b4da19bd809f843f4d9293dc989650614451bae2939bb818eadfd33d4505bc4713ba98642a00b624d47e7ff96b43b70050cf321e975ca
|
|
7
|
+
data.tar.gz: 6b00a155b17fd721988b3d06fd3220b9b51bd4d0479bca0315db54e51210c87162d7c3c5478ca8dbcc7082ec70f521952ca87a66586daa96e521edd64d6a59e9
|
data/README.md
CHANGED
|
@@ -75,7 +75,7 @@ Without fields, the specified target will be opend as 'lazy' mode, and actually
|
|
|
75
75
|
|
|
76
76
|
With field definitions, `#open()` creates the target and actually opens it immediately.
|
|
77
77
|
|
|
78
|
-
client.open('sample', {id:'
|
|
78
|
+
client.open('sample', {id:'integer', name:'string', age:'integer', email:'string'})
|
|
79
79
|
|
|
80
80
|
Fiels specified on `#open()` are configured as default field set.
|
|
81
81
|
|
|
@@ -124,7 +124,7 @@ Stop and remove specified query immediately.
|
|
|
124
124
|
|
|
125
125
|
Returns the list of fields definitions, which contains `name`(string), `type`(string) and `optional`(true/false).
|
|
126
126
|
|
|
127
|
-
client.fields('sample') #=> [{'name' => 'id', 'type' => '
|
|
127
|
+
client.fields('sample') #=> [{'name' => 'id', 'type' => 'integer', 'optional' => false}, ...]
|
|
128
128
|
|
|
129
129
|
NOTE: Hashes and arrays are just returned as 'hash' and 'array'. Nested fields and these types are not returned to client.
|
|
130
130
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'norikra/client'
|
data/norikra-client.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.email = ["tagomoris@gmail.com"]
|
|
12
12
|
spec.description = %q{Client commands and libraries for Norikra}
|
|
13
13
|
spec.summary = %q{Client commands and libraries for Norikra}
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/norikra/norikra-client-ruby"
|
|
15
15
|
spec.license = "APLv2"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: norikra-client-jruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: msgpack-rpc-over-http-jruby
|
|
@@ -94,13 +94,14 @@ files:
|
|
|
94
94
|
- README.md
|
|
95
95
|
- Rakefile
|
|
96
96
|
- bin/norikra-client
|
|
97
|
+
- lib/norikra-client.rb
|
|
97
98
|
- lib/norikra/client.rb
|
|
98
99
|
- lib/norikra/client/cli.rb
|
|
99
100
|
- lib/norikra/client/cli/formatter.rb
|
|
100
101
|
- lib/norikra/client/cli/parser.rb
|
|
101
102
|
- lib/norikra/client/version.rb
|
|
102
103
|
- norikra-client.gemspec
|
|
103
|
-
homepage: https://github.com/
|
|
104
|
+
homepage: https://github.com/norikra/norikra-client-ruby
|
|
104
105
|
licenses:
|
|
105
106
|
- APLv2
|
|
106
107
|
metadata: {}
|