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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10de160e6bd3033f77a96ede852709beead02f7f
4
- data.tar.gz: 4e1e01377dc51eec87228bf840f466b43df87f9b
3
+ metadata.gz: 238c37db2b823b0565664aa791aefc558bea3966
4
+ data.tar.gz: 7c3e5b7382fe54e6fa2231337a8ab8679e98238c
5
5
  SHA512:
6
- metadata.gz: e59b012082cef26e8c780e78271781aef4d65a60e6120e880dcd791cbfd06fb5b8572b78c7c9ae63165758595d07cb8978fa366a46bc3fb6650c346c8403e657
7
- data.tar.gz: 2383ce078a4532bef29bd68d2538ddfbd98901e6e48414d52ea090d91174bfc70c2b5b1956ed26d0867ed64018e83ae276f0d23cdb1bd529e38db43317348dae
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:'long', name:'string', age:'int', email:'string'})
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' => 'int', 'optional' => false}, ...]
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'
@@ -1,5 +1,5 @@
1
1
  module Norikra
2
2
  class Client
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -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/tagomoris/norikra-client"
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.0
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-01 00:00:00.000000000 Z
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/tagomoris/norikra-client
104
+ homepage: https://github.com/norikra/norikra-client-ruby
104
105
  licenses:
105
106
  - APLv2
106
107
  metadata: {}