active_record_mysql_repl 0.1.7 → 0.1.8

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: 7893476abc10750ae8de2108f440da50b8a7082555bf04347bdaaeb2d92818a9
4
- data.tar.gz: bfd86689e58838c910471ba54382724f810255c865edb7f2bdfc43827ecfbc99
3
+ metadata.gz: 5c4893a49bbb8ebbb08ef06336fa5e3f3d5d97accc649c55925665dc9029ff48
4
+ data.tar.gz: 49d440535ad0bbcf0f822e7516aae9ac1ecb4f6b924c13c3aa1c2e526cf5c47d
5
5
  SHA512:
6
- metadata.gz: e234c07ac4b8694e1ad8455b595fff7b20e99193d0ec417cf00a7a0b243e482ee7f01dc46c971ec6a68846d4bd8ef5d2d1080f1a5f39274d4e39c395fa598515
7
- data.tar.gz: d6b382c634f63e326499eaeaec189f77fe9496a17c019c83eca21e0806f197f2e3a115315c34ddc88649e5457195ce9d4737bd78dd4b8114e49ac06784e05f0f
6
+ metadata.gz: afa6d7c987b56011fce50bd689eb4fb119e866f29c7a4c91255d56349b3ee0b38a491155256062dc101a6d13a3646de135ae8b21411f2e72e2c78119df4f74e7
7
+ data.tar.gz: 282636e6c5af3aad9ff587acb62f2e6a20564ef96325bc036b6e6eca27b27ed23332420a365562b53a8fa41f9587fad1cef2a9b098314443f79dd66402b0cfbc
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRecordMysqlRepl
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.8"
5
5
  end
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.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroki Kishi
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-13 00:00:00.000000000 Z
10
+ date: 2025-03-21 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.5.23
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: []