tapsoob 0.5.15-java → 0.5.16-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 +4 -4
- data/lib/tapsoob/cli/root.rb +1 -1
- data/lib/tapsoob/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62689250851acd611f72f53d0eb974859174ff0b485b2506773b24c7be69e8db
|
4
|
+
data.tar.gz: d76d4971121bdf6e963cfa8e3e88e68036d75cb2dc7ef957473f67bedf7cc27a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34ec243e06b540c0d2f8f5837e3b0aab52a1cfc3513ab514a2ae419a9ad3484287662d1bc28601fc029d41f6b3c8236a4d475087667a5cd9c9d8e43a1b74bf59
|
7
|
+
data.tar.gz: 54913ffcc4ae03fc874c07def772405c464d8407beb81a8ed366423308fc86ea66b679fe9659dc07c59f74b8d7ee02facf78bf8e30de58a2178eae76a04031fb
|
data/lib/tapsoob/cli/root.rb
CHANGED
@@ -18,6 +18,7 @@ module Tapsoob
|
|
18
18
|
option :"disable-compression", desc: "Disable Compression", default: false, type: :boolean, aliases: "-g"
|
19
19
|
option :tables, desc: "Shortcut to filter on a list of tables", type: :array, aliases: "-t"
|
20
20
|
option :"exclude-tables", desc: "Shortcut to exclude a list of tables", type: :array, aliases: "-e"
|
21
|
+
option :"same-db", type: :boolean, default: false
|
21
22
|
option :progress, desc: "Show progress", default: true, type: :boolean
|
22
23
|
option :debug, desc: "Enable debug messages", default: false, type: :boolean
|
23
24
|
def pull(dump_path, database_url)
|
@@ -40,7 +41,6 @@ module Tapsoob
|
|
40
41
|
option :tables, desc: "Shortcut to filter on a list of tables", type: :array, aliases: "-t"
|
41
42
|
option :"exclude-tables", desc: "Shortcut to exclude a list of tables", type: :array, aliases: "-e"
|
42
43
|
option :purge, desc: "Purge data in tables prior to performing the import", default: false, type: :boolean, aliases: "-p"
|
43
|
-
option :"same-db", type: :boolean, default: false
|
44
44
|
option :"skip-duplicates", desc: "Remove duplicates when loading data", default: false, type: :boolean
|
45
45
|
option :"discard-identity", desc: "Remove identity when pushing data (may result in creating duplicates)", default: false, type: :boolean
|
46
46
|
option :progress, desc: "Show progress", default: true, type: :boolean
|
data/lib/tapsoob/version.rb
CHANGED