db_vcs 1.1.1 → 1.1.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
  SHA256:
3
- metadata.gz: fb55ddb3e649b264646638e226964003d16c0479773c08e4131370939eac6b24
4
- data.tar.gz: 4d85fdbce48d8f469559158ff57e421d19777adcd628cbe98fb9b33c3e65870c
3
+ metadata.gz: 0b58510c2bf947faf86d12f50af3fa96e61f8439be6bef6b0fbe61ba4f51e40e
4
+ data.tar.gz: ed811ba38f4d341f592a5941de8a9322c084b73ffdc97f276f3315e20516f960
5
5
  SHA512:
6
- metadata.gz: 33b8d039eb5b6e1c091bf27db3c7b5fed10ba5f3b9808ef207c2af2528ee07b9d01253cdaf7c8665221eb330705bc4eb1b66491ba34bb617582e19429fb6a7f0
7
- data.tar.gz: 534576bf65ceb406f7c5ca9cf38031614b5c301f58b0d2d5ceca33504059a2bed9c52a0c13c91ce3ed2a501c539da92a0b0a691ad00ac5bba1518a43fbb5349b
6
+ metadata.gz: df60ef5e82709ea597499c1cf7ca5641572d47f189cf7e5df357dd0563d726611b9a4c5326cccfbc8b8c70025a3558f344053de1020a92fd5b85d50729c0373e
7
+ data.tar.gz: 60b7bdd0bd2095e6241aee7e560a06bfed5882c733d67de3ea8699aec9269e231748944192a736a2fc3965fd953959173643cf53eee6092fec2b4d4cb921cff2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Nothing new yet
4
4
 
5
+ ## [1.1.2] - 2022-02-05
6
+
7
+ - Fix mysql CLI options
8
+
5
9
  ## [1.1.1] - 2022-02-01
6
10
 
7
11
  - Add "db-vcs name" command
@@ -64,7 +64,7 @@ module DbVcs
64
64
  connection.query(<<~SQL)
65
65
  CREATE DATABASE #{to_db} CHARACTER SET #{create_opts["charset"]} COLLATE #{create_opts["collation"]}
66
66
  SQL
67
- password_opt = config.password.to_s.strip.empty? ? "" : "-p #{config.password}"
67
+ password_opt = config.password.to_s.strip.empty? ? "" : "-p#{config.password}"
68
68
  command =
69
69
  <<~SH
70
70
  #{config.mysqldump_path} -u #{config.username} #{password_opt} -h #{config.host} -P #{config.port} #{from_db} \
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DbVcs
4
- VERSION = "1.1.1"
4
+ VERSION = "1.1.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: db_vcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Dzyzenko
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-02-01 00:00:00.000000000 Z
11
+ date: 2022-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg
@@ -163,8 +163,8 @@ licenses:
163
163
  metadata:
164
164
  allowed_push_host: https://rubygems.org
165
165
  homepage_uri: https://github.com/intale/db_vcs
166
- source_code_uri: https://github.com/intale/vcs_db/tree/v1.1.1
167
- changelog_uri: https://github.com/intale/vcs_db/blob/v1.1.1/CHANGELOG.md
166
+ source_code_uri: https://github.com/intale/vcs_db/tree/v1.1.2
167
+ changelog_uri: https://github.com/intale/vcs_db/blob/v1.1.2/CHANGELOG.md
168
168
  post_install_message:
169
169
  rdoc_options: []
170
170
  require_paths: