tapsoob 0.4.20-java → 0.4.21-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
  SHA256:
3
- metadata.gz: '09590b024cc8af1f11db6d4bc1a225d1b1281aed13ac127868eb4bb80aa181d1'
4
- data.tar.gz: 46c40cdfc0ce3cb8ffa9a1eb048aedea915381e1f4e68bd6f3e741768c47f9fb
3
+ metadata.gz: 7f23fae83b548006f4c32b04c4996ec88de7d631026c886e0abd221368b89382
4
+ data.tar.gz: 19c023656dbb303a860d0396f0f0f2ce734d90b1998515f0ecaec53e4939fd7f
5
5
  SHA512:
6
- metadata.gz: 180093c7bdebaffd230445339d8cb11144eee6084bfa33c047ede66e1ef6c014791f9dfbec34a9516bd9421d4891864f27f442fafdb0c6d0b0ede2806e76bd33
7
- data.tar.gz: 1d3a97cdf2da6f99888a780403f84f7ec92e04aa15c0d4986f123fed157a29ce61ca96d852bd52ec382ac0f0bc9bbacb0d8a0107fc7731cbd4683214a0a4ad6c
6
+ metadata.gz: 9390e1a84e41f650e204fea3162737a1b52c9a6bb08f884d36e4a29b9df45eb2dffffde1cac8dad728cb36b9897805dc482a8690d6e5f05679455edc071203b3
7
+ data.tar.gz: afb4fd2228e48a463d5d18a3f63f379ec2201ddd5e405c2293a7b3bb08d7e2522160d413e0e3bea234d4e69b6f998a32951337ba078ad180bdd4dfc33a73cf98
@@ -393,7 +393,7 @@ module Tapsoob
393
393
  log.info "#{tables.size} tables, #{format_number(record_count)} records"
394
394
 
395
395
  tables.each do |table_name, count|
396
- next unless File.exists?(File.join(dump_path, "data", "#{table_name}.json"))
396
+ next unless File.exists?(File.join(dump_path, "data", "#{table_name}.json")) || JSON.parse(File.read(File.join(dump_path, "data", "#{table}.json")))["data"].size == 0
397
397
  db[table_name.to_sym].truncate if @opts[:purge]
398
398
  stream = Tapsoob::DataStream.factory(db, {
399
399
  :table_name => table_name,
@@ -485,7 +485,7 @@ module Tapsoob
485
485
 
486
486
  def fetch_local_tables_info
487
487
  tables_with_counts = {}
488
- tbls = Dir.glob(File.join(dump_path, "data", "*")).map { |path| File.basename(path, ".json") }
488
+ tbls = Dir.glob(File.join(dump_path, "schemas", "*")).map { |path| File.basename(path, ".rb") }
489
489
  tbls.each do |table|
490
490
  if File.exists?(File.join(dump_path, "data", "#{table}.json"))
491
491
  data = JSON.parse(File.read(File.join(dump_path, "data", "#{table}.json")))
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Tapsoob
3
- VERSION = "0.4.20".freeze
3
+ VERSION = "0.4.21".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tapsoob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.20
4
+ version: 0.4.21
5
5
  platform: java
6
6
  authors:
7
7
  - Félix Bellanger