hbase-jruby 0.6.0-java → 0.6.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: 156f951a80f9417d27674a2056eb3f71ed17329c
4
- data.tar.gz: 5fa71d8f88ba39badc690da581f2ccc64a5ca7f3
3
+ metadata.gz: f32321b68a2ef60bd0f6204024a66f2128cfa063
4
+ data.tar.gz: 09db1b0e3acde863d431e2ab53b56a300d728a2e
5
5
  SHA512:
6
- metadata.gz: 7a21f92d008748eca8c1c333721939356092770a0425891fa1f575d5bac14a3c4b0570f843f0ea2ce31fdd5dc58b4b5b2576330446622e9046f5abcaa497989a
7
- data.tar.gz: 4f6f2bf84a19fc129bd5d4263e87d3344a9199c60734a5b95d2d3ec476fe54c9433b573a7837767df3c826b47eb1e744fc65d61972f4ca5a2123269f8b7a86cb
6
+ metadata.gz: ccadd29f6013b881ae8293958d62bede38a735f649fb558e2baced52ce48ef830222fe4bcc9fc74285c70eff9b23f7a3bf19802dd8a01f59c1e2f5760df7b44b
7
+ data.tar.gz: 106a15062df3e5c9c04d1dd9a906c130d1bd4cfd2621f33166bc7d30d0c0816777ec651b89459494fcce0547b822d1750bff231a5cc327be185f3fd2efe0eb6a
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.6.1
5
+ -----
6
+
7
+ - Fixed error on JRuby 1.7.13 (#34)
8
+
4
9
  0.6.0
5
10
  -----
6
11
 
@@ -159,8 +159,13 @@ module Util
159
159
  raise ArgumentError, "Column family not specified"
160
160
  else
161
161
  col = col.to_s
162
- cf, cq = KeyValue.parseColumn(col.to_java_bytes)
163
- cq = JAVA_BYTE_ARRAY_EMPTY if cq.nil? && col[-1, 1] == ':'
162
+ cfcq = KeyValue.parseColumn(col.to_java_bytes)
163
+ cf = cfcq[0]
164
+ cq = if cfcq.length == 2
165
+ cfcq[1]
166
+ elsif col[-1, 1] == ':'
167
+ JAVA_BYTE_ARRAY_EMPTY
168
+ end
164
169
  return cf, cq
165
170
  end
166
171
  end
@@ -1,5 +1,5 @@
1
1
  class HBase
2
2
  module JRuby
3
- VERSION = '0.6.0'
3
+ VERSION = '0.6.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hbase-jruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: java
6
6
  authors:
7
7
  - Junegunn Choi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-21 00:00:00.000000000 Z
11
+ date: 2014-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -102,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  version: '0'
103
103
  requirements: []
104
104
  rubyforge_project:
105
- rubygems_version: 2.2.2
105
+ rubygems_version: 2.1.9
106
106
  signing_key:
107
107
  specification_version: 4
108
108
  summary: A JRuby binding for HBase