jabara 0.0.1 → 0.0.2

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: b920b55bea41121729957fd1afeda678ff1b1c8e
4
- data.tar.gz: b9e152304622564a2fa3b2526de4f952056fa7a1
3
+ metadata.gz: c822f3a515941c87b02d841f72f0558f9e862820
4
+ data.tar.gz: 801383a2e6e540d54dccb8a77b6aa3641dd5ef39
5
5
  SHA512:
6
- metadata.gz: 4cd0bdddb3d6651183eb30f2ab620a2c85eb07811ebe602a7960b956dd3e122b21468c9b794700c1b28ffbfdb9b7d901c6f58bb5e891c93cfbd490d91c4e605b
7
- data.tar.gz: 8cc7d405f8849bbdc3388cfddfe071c7413164f436189362ad8626e33e4638cdeb1ac1387743d8410063315a8fd8ff8d97576f1d67522692e5a5b4430410c7f9
6
+ metadata.gz: 0f6b2425f51ef4b67740efa08303a8826226999fecba4f92bcc44597fdcf5bff28d40433a5fdf3b0d17de9f04626b5c3872fb9d19d5d1e29736b147891dc5912
7
+ data.tar.gz: b8217aa3f3eaedd5ef05855d2d7f73b2e69ed08d49a83bcf66ed8ba664c2c93a37d13fb93a83ab98578aac35cba4f40b58cce6c65766ee64b7330ef1363dfb30
@@ -0,0 +1 @@
1
+ require 'jabara/mysql_bulk/output'
@@ -130,8 +130,8 @@ module Jabara
130
130
  end
131
131
 
132
132
  def parse(data)
133
- return ::Jabara.set([]) if hash.nil?
134
- elems = ::Jabara::Transformer::KeyValue.new.to_entries(hash).map {|entry|
133
+ return ::Jabara.set([]) if data.nil?
134
+ elems = ::Jabara::Transformer::KeyValue.new.to_entries(data).map {|entry|
135
135
  if entry[:key].start_with? 'role:' then
136
136
  decode_acl_role_entry(entry[:key].gsub(/role:/, ''), entry[:value])
137
137
  else
@@ -1,3 +1,3 @@
1
1
  module Jabara
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jabara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuki Takeichi
@@ -87,6 +87,7 @@ files:
87
87
  - lib/jabara/mysql.rb
88
88
  - lib/jabara/mysql/output.rb
89
89
  - lib/jabara/mysql/schema.rb
90
+ - lib/jabara/mysql_bulk.rb
90
91
  - lib/jabara/mysql_bulk/output.rb
91
92
  - lib/jabara/parse_com.rb
92
93
  - lib/jabara/parse_com/input.rb