activerecord_uml 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2abcbc6eff7c040819407f366d069092e03eab839f769360030637af73535b25
4
- data.tar.gz: 7ea892c78d8297850f57a7b976af9c71a2a1b2a893a9bbce6effae986e58f187
3
+ metadata.gz: 14ef2902767bb5de3b65b387a336ab4f3ebe234dea52cf6c8b1d3cb756818fdc
4
+ data.tar.gz: 760d9f81fda80c254be2de0f207474555f93ae470260b9dc6644940981b0e720
5
5
  SHA512:
6
- metadata.gz: b77c58d014dd66aff2699ef266a8e89ce5eb5c0c9d92e02231b5204fd893523abb5ea5d34b6165667685549959b6d54d7970a321d7aecde9b0f981dc2045b17f
7
- data.tar.gz: ae244cdaa9b8c32b1c5a9f0dd18264d0c2f4609bc20d7f6720b61062019fb96203f58cecaac4cd2a12e7a085ffb2047e746fefbcc0cb1d3fed2f1189ae998d9c
6
+ metadata.gz: 685b19398a365c8b47905bfdf6aba021fc61cbfaa4ecf022f6777a05dc09341b404816f3ba308edb729651d76a37c16970087de7072021591dbb490a4d3e2d9e
7
+ data.tar.gz: 4c1079d76751897c77ddfae33ed10708e675e0726871d3a34ffd57a8699ce36609a9fa5e2a56c2f906e140d780330fb3f7fa5e530da69ceb5d21bde66022e6a0
@@ -30,7 +30,16 @@ EOF
30
30
  @class_name.reflect_on_all_associations(:belongs_to).map do |a|
31
31
  "#{a.class_name} --* #{@class_name}#{label_for a}"
32
32
  end.concat(@class_name.reflect_on_all_associations(:has_many).map do |a|
33
- "#{@class_name} --* #{a.class_name}#{label_for a}"
33
+ if a.is_a? ActiveRecord::Reflection::ThroughReflection
34
+ if a.source_reflection
35
+ # If a source association is specified, the class name of the source association is displayed.
36
+ "#{@class_name} *--* #{a.source_reflection.class_name}#{label_for a}"
37
+ else
38
+ "#{@class_name} *--* #{a.class_name}#{label_for a}"
39
+ end
40
+ else
41
+ "#{@class_name} --* #{a.class_name}#{label_for a}"
42
+ end
34
43
  end).concat(@class_name.reflect_on_all_associations(:has_one).map do |a|
35
44
  "#{@class_name} --* #{a.class_name}#{label_for a}"
36
45
  end)
@@ -58,7 +67,7 @@ EOF
58
67
  end
59
68
 
60
69
  def label_for(association)
61
- association.class_name != association.name.to_s.classify ? " : #{association.name.to_s.classify}" : ''
70
+ association.class_name != association.name.to_s.classify ? " : #{association.name.to_s.classify}" : ""
62
71
  end
63
72
  end
64
73
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiverecordUml
4
- VERSION = "0.10.0"
4
+ VERSION = "0.11.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord_uml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - shigeru.nakajima
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-21 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Generate UML class diagram for Mermaid.js from ActiveRecord instances
14
14
  by Rails runner.