active_record_mysql_repl 0.1.7 → 0.1.9
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13b5a7128e59f93aa9cc000f2a633cc75c5c768dea583038d3589db90e831a99
|
4
|
+
data.tar.gz: 58b86cd05a7e3068edf18ea97643b559ff7dafc99190a0a64fdab356c9b1518c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8310764578621a5242941bbbf3ecc81553e12994679bb6ed2f3ca610cc0a46d6a78c9bd5f13fe0bc0362af636e32205467e86431808e64f45eb499121959f46c
|
7
|
+
data.tar.gz: f3d28bdf922dea6051ebf812c16573ce013187e23e5600e714bac56353f202cc05d98e6cdee27d184f641636c18034f82ad403f06e304e4d98bb879c2f1e9c4a
|
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
COMPLETION = <<~COMPLETION
|
4
4
|
#!/usr/bin/env bash
|
5
|
-
|
5
|
+
|
6
6
|
function _army() {
|
7
7
|
_arguments \
|
8
8
|
'-c[path to .armyrc file]:.armyrc:_files' \
|
9
9
|
'-d[Database name]:database:->database' \
|
10
10
|
'-e[output erd]:output erd:->erd'
|
11
|
-
|
11
|
+
|
12
12
|
case "$state" in
|
13
13
|
database)
|
14
14
|
slice=("${words[@]:1}")
|
@@ -18,11 +18,11 @@ COMPLETION = <<~COMPLETION
|
|
18
18
|
_values 'Generate ERD' erd ''
|
19
19
|
esac
|
20
20
|
}
|
21
|
-
|
21
|
+
|
22
22
|
function _database {
|
23
23
|
army ${@}
|
24
24
|
}
|
25
|
-
|
25
|
+
|
26
26
|
compdef _army army
|
27
27
|
COMPLETION
|
28
28
|
|
@@ -21,6 +21,7 @@ module ActiverecordMysqlRepl
|
|
21
21
|
if e.is_a?(::ActiveRecord::Base)
|
22
22
|
values = e.attributes.transform_values do |v|
|
23
23
|
next JSON.pretty_generate(v) if v.is_a?(Enumerable) && v.size > 0
|
24
|
+
next v.to_time if v.is_a?(Time) || v.is_a?(Date)
|
24
25
|
next "NULL" if v.nil?
|
25
26
|
next '""' if v == ""
|
26
27
|
v.to_s
|
@@ -12,7 +12,7 @@ module ActiveRecordMysqlRepl
|
|
12
12
|
return yield(db_config.port) if block_given?
|
13
13
|
end
|
14
14
|
|
15
|
-
puts "Establishing ssh tunnel to #{db_config.remote_host}:#{db_config.port} via #{db_config.ssh_user}
|
15
|
+
puts "Establishing ssh tunnel to #{db_config.remote_host}:#{db_config.port} via #{db_config.ssh_user}@#{db_config.bastion}".gray
|
16
16
|
|
17
17
|
gateway = Net::SSH::Gateway.new(db_config.bastion, db_config.ssh_user)
|
18
18
|
gateway.open(db_config.remote_host, db_config.port) do |port|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_record_mysql_repl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroki Kishi
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: byebug
|
@@ -275,7 +274,6 @@ metadata:
|
|
275
274
|
homepage_uri: https://github.com/nogahighland/active_record_mysql_repl
|
276
275
|
source_code_uri: https://github.com/nogahighland/active_record_mysql_repl
|
277
276
|
changelog_uri: https://github.com/nogahighland/active_record_mysql_repl/CHANGELOG.md
|
278
|
-
post_install_message:
|
279
277
|
rdoc_options: []
|
280
278
|
require_paths:
|
281
279
|
- lib
|
@@ -290,8 +288,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
290
288
|
- !ruby/object:Gem::Version
|
291
289
|
version: '0'
|
292
290
|
requirements: []
|
293
|
-
rubygems_version: 3.
|
294
|
-
signing_key:
|
291
|
+
rubygems_version: 3.6.6
|
295
292
|
specification_version: 4
|
296
293
|
summary: MySQL REPL featured by ActiveRecord and Pry
|
297
294
|
test_files: []
|