active_record_mysql_repl 0.1.6 → 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: 489b4d821f8cf40519a68467b478bd1d0513645a339f857db3c5c8115283fb02
4
- data.tar.gz: b9b213e37f4f8b33a23e4f2fc0fefc5eb4efe7e973f183ab8f38802aeb1df3bf
3
+ metadata.gz: 5c4893a49bbb8ebbb08ef06336fa5e3f3d5d97accc649c55925665dc9029ff48
4
+ data.tar.gz: 49d440535ad0bbcf0f822e7516aae9ac1ecb4f6b924c13c3aa1c2e526cf5c47d
5
5
  SHA512:
6
- metadata.gz: 12f4ae422a58cdbcb9464a4599564b08e51bb5ab31ac129b7a84ab97850e9ec52ebec7c1b0aa4eedc549e2a25e08666a1507f20da33bae47af7943d493a8dade
7
- data.tar.gz: 1a289dd4aa4b8a15b8e851bfee7838fd1479a3116969d1a3a5d19b034a3d5674d64b224c3f6add66953b44b764106defee225e1f73ca62774f520a02e494c0f5
6
+ metadata.gz: afa6d7c987b56011fce50bd689eb4fb119e866f29c7a4c91255d56349b3ee0b38a491155256062dc101a6d13a3646de135ae8b21411f2e72e2c78119df4f74e7
7
+ data.tar.gz: 282636e6c5af3aad9ff587acb62f2e6a20564ef96325bc036b6e6eca27b27ed23332420a365562b53a8fa41f9587fad1cef2a9b098314443f79dd66402b0cfbc
data/README.md CHANGED
@@ -624,6 +624,77 @@ D, [2024-12-11T23:48:57.250492 #96381] DEBUG -- : Order Load (1.8ms) SELECT `
624
624
 
625
625
  </details>
626
626
 
627
+ Convenient syntax sugar such as `'value'.{table_name}` `'value'.{table_name}s` `'value'.{table_name}_by_{column_name}` are available as dynamically defined methods.
628
+
629
+ ```rb
630
+ [1] test(main)> :'1'.order
631
+ ```
632
+
633
+ <details><summary>output:</summary>
634
+
635
+ ```rb
636
+ D, [2024-12-13T11:40:17.290699 #48059] DEBUG -- : Order Load (2.2ms) SELECT `orders`.* FROM `orders` WHERE `orders`.`id` = '1' LIMIT 1
637
+ #<Order:0x0000000122e7f0e0> {
638
+ :id => "1",
639
+ :user_id => "1",
640
+ :item_id => "1"
641
+ }
642
+ ```
643
+
644
+ </details>
645
+
646
+ ```rb
647
+ [2] test(main)> '1'.order
648
+ ```
649
+
650
+ <details><summary>output:</summary>
651
+
652
+ ```rb
653
+ D, [2024-12-13T11:40:21.217724 #48059] DEBUG -- : Order Load (2.4ms) SELECT `orders`.* FROM `orders` WHERE `orders`.`id` = '1' LIMIT 1
654
+ #<Order:0x000000010512c450> {
655
+ :id => "1",
656
+ :user_id => "1",
657
+ :item_id => "1"
658
+ }
659
+ ```
660
+
661
+ </details>
662
+
663
+ ```rb
664
+ [3] test(main)> '1'.orders
665
+ ```
666
+
667
+ <details><summary>output:</summary>
668
+
669
+ ```rb
670
+ D, [2024-12-13T11:40:22.781925 #48059] DEBUG -- : Order Load (2.7ms) SELECT `orders`.* FROM `orders` WHERE `orders`.`id` = '1' LIMIT 1
671
+ #<Order:0x0000000105129750> {
672
+ :id => "1",
673
+ :user_id => "1",
674
+ :item_id => "1"
675
+ }
676
+ ```
677
+
678
+ </details>
679
+
680
+ ```rb
681
+ [4] test(main)> '1'.user_by_profile_id
682
+ ```
683
+
684
+ <details><summary>output:</summary>
685
+
686
+ ```rb
687
+ D, [2024-12-13T11:40:47.497002 #48059] DEBUG -- : User Load (7.9ms) SELECT `users`.* FROM `users` WHERE `users`.`profile_id` = 1
688
+ [
689
+ [0] #<User:0x00000001243fc0f8> {
690
+ :id => "1",
691
+ :login_id => "login_id1",
692
+ :profile_id => 1
693
+ }
694
+ ]
695
+ ```
696
+
697
+ </details>
627
698
  ---
628
699
 
629
700
  `.csv(orientation)` is defined to generate csv format. The default orientation is same as `.tab`.
@@ -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
 
@@ -6,7 +6,7 @@ module ActiveRecordMysqlRepl
6
6
  attr_reader :configs
7
7
 
8
8
  def self.load(path)
9
- new(YAML.load_file(path))
9
+ new(YAML.load_file(path, aliases: true))
10
10
  end
11
11
 
12
12
  def [](key)
@@ -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.6"
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.6
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: []