tapsoob 0.1.14 → 0.1.15
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/lib/tapsoob/operation.rb +1 -1
- data/lib/tapsoob/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c7dc41150d2f00a22f307104b2d1e7201253784
|
|
4
|
+
data.tar.gz: 84dfed6b77bac12775c407a95006e3a6a641b527
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b19220754736dfe6f1ac59df628f37ed3246c27d748e825ce12b50cff745e03b4697bd8acb29ca3965c0d64a2fe3d3578daabb4bc1b320fffd3e169ca6631ad9
|
|
7
|
+
data.tar.gz: df3ba9a289a8ed11c580070dd3908896f617a9f75cc59a6803a99212b43b0c177a2721022670f71ffbc9b77af5c38116bb6d0ab3e3ab74b00f604ba936105a4b
|
data/lib/tapsoob/operation.rb
CHANGED
|
@@ -382,7 +382,7 @@ module Tapsoob
|
|
|
382
382
|
puts "#{tables.size} tables, #{format_number(record_count)} records"
|
|
383
383
|
|
|
384
384
|
tables.each do |table_name, count|
|
|
385
|
-
next unless File.exists?(File.join(dump_path, "data", "#{
|
|
385
|
+
next unless File.exists?(File.join(dump_path, "data", "#{table_name}.json"))
|
|
386
386
|
stream = Tapsoob::DataStream.factory(db,
|
|
387
387
|
:table_name => table_name,
|
|
388
388
|
:chunksize => default_chunksize)
|
data/lib/tapsoob/version.rb
CHANGED