paper_trail_diff 0.1.0 → 0.3.0

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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +62 -0
  3. data/QUICKSTART.md +302 -0
  4. data/README.md +258 -19
  5. data/lib/paper_trail_diff/activity_boundary.rb +34 -3
  6. data/lib/paper_trail_diff/activity_child_candidate_loader.rb +73 -0
  7. data/lib/paper_trail_diff/activity_event_snapshot_refresher.rb +261 -45
  8. data/lib/paper_trail_diff/activity_history.rb +136 -0
  9. data/lib/paper_trail_diff/activity_range.rb +28 -12
  10. data/lib/paper_trail_diff/activity_snapshot_delta.rb +64 -0
  11. data/lib/paper_trail_diff/activity_snapshot_sequence.rb +3 -3
  12. data/lib/paper_trail_diff/activity_timeline_builder.rb +54 -45
  13. data/lib/paper_trail_diff/activity_version_collector.rb +14 -17
  14. data/lib/paper_trail_diff/association_diff_traversal.rb +184 -0
  15. data/lib/paper_trail_diff/branch_snapshot_refresher.rb +5 -3
  16. data/lib/paper_trail_diff/collection_comparator.rb +155 -0
  17. data/lib/paper_trail_diff/collection_identity_index.rb +53 -0
  18. data/lib/paper_trail_diff/collection_transition.rb +25 -0
  19. data/lib/paper_trail_diff/comparison_batch.rb +151 -0
  20. data/lib/paper_trail_diff/engine.rb +5 -45
  21. data/lib/paper_trail_diff/errors.rb +9 -0
  22. data/lib/paper_trail_diff/historical_snapshot_store.rb +55 -3
  23. data/lib/paper_trail_diff/instrumentation.rb +30 -0
  24. data/lib/paper_trail_diff/live_endpoint_batch_loader.rb +133 -0
  25. data/lib/paper_trail_diff/live_endpoint_provider.rb +48 -0
  26. data/lib/paper_trail_diff/live_graph_collector.rb +52 -0
  27. data/lib/paper_trail_diff/paper_trail_adapter.rb +61 -34
  28. data/lib/paper_trail_diff/preloaded_endpoint_batch_loader.rb +48 -0
  29. data/lib/paper_trail_diff/prepared_edge_loader.rb +54 -17
  30. data/lib/paper_trail_diff/prepared_history.rb +14 -4
  31. data/lib/paper_trail_diff/prepared_history_loader.rb +17 -9
  32. data/lib/paper_trail_diff/prepared_record_index.rb +138 -10
  33. data/lib/paper_trail_diff/snapshot.rb +66 -3
  34. data/lib/paper_trail_diff/snapshot_traversal.rb +97 -0
  35. data/lib/paper_trail_diff/step.rb +9 -0
  36. data/lib/paper_trail_diff/support.rb +18 -0
  37. data/lib/paper_trail_diff/time_activity_timeline_builder.rb +111 -0
  38. data/lib/paper_trail_diff/time_range.rb +85 -0
  39. data/lib/paper_trail_diff/time_version_range.rb +53 -0
  40. data/lib/paper_trail_diff/timeline_builder.rb +13 -7
  41. data/lib/paper_trail_diff/timeline_range.rb +72 -0
  42. data/lib/paper_trail_diff/traversal.rb +80 -0
  43. data/lib/paper_trail_diff/traversal_emitter.rb +42 -0
  44. data/lib/paper_trail_diff/traversal_entry.rb +94 -0
  45. data/lib/paper_trail_diff/version.rb +1 -1
  46. data/lib/paper_trail_diff/version_association_candidate_scope.rb +73 -0
  47. data/lib/paper_trail_diff.rb +84 -13
  48. data/sig/generated/paper_trail_diff/activity_boundary.rbs +17 -2
  49. data/sig/generated/paper_trail_diff/activity_child_candidate_loader.rbs +40 -0
  50. data/sig/generated/paper_trail_diff/activity_event_snapshot_refresher.rbs +49 -8
  51. data/sig/generated/paper_trail_diff/activity_history.rbs +79 -0
  52. data/sig/generated/paper_trail_diff/activity_range.rbs +14 -5
  53. data/sig/generated/paper_trail_diff/activity_snapshot_delta.rbs +33 -0
  54. data/sig/generated/paper_trail_diff/activity_snapshot_sequence.rbs +2 -2
  55. data/sig/generated/paper_trail_diff/activity_timeline_builder.rbs +15 -10
  56. data/sig/generated/paper_trail_diff/activity_version_collector.rbs +2 -5
  57. data/sig/generated/paper_trail_diff/association_diff_traversal.rbs +58 -0
  58. data/sig/generated/paper_trail_diff/branch_snapshot_refresher.rbs +2 -2
  59. data/sig/generated/paper_trail_diff/collection_comparator.rbs +59 -0
  60. data/sig/generated/paper_trail_diff/collection_identity_index.rbs +29 -0
  61. data/sig/generated/paper_trail_diff/collection_transition.rbs +18 -0
  62. data/sig/generated/paper_trail_diff/comparison_batch.rbs +65 -0
  63. data/sig/generated/paper_trail_diff/engine.rbs +0 -12
  64. data/sig/generated/paper_trail_diff/errors.rbs +12 -0
  65. data/sig/generated/paper_trail_diff/historical_snapshot_store.rbs +22 -2
  66. data/sig/generated/paper_trail_diff/instrumentation.rbs +12 -0
  67. data/sig/generated/paper_trail_diff/live_endpoint_batch_loader.rbs +52 -0
  68. data/sig/generated/paper_trail_diff/live_endpoint_provider.rbs +23 -0
  69. data/sig/generated/paper_trail_diff/live_graph_collector.rbs +27 -0
  70. data/sig/generated/paper_trail_diff/paper_trail_adapter.rbs +21 -10
  71. data/sig/generated/paper_trail_diff/preloaded_endpoint_batch_loader.rbs +24 -0
  72. data/sig/generated/paper_trail_diff/prepared_edge_loader.rbs +22 -8
  73. data/sig/generated/paper_trail_diff/prepared_history.rbs +6 -0
  74. data/sig/generated/paper_trail_diff/prepared_history_loader.rbs +4 -2
  75. data/sig/generated/paper_trail_diff/prepared_record_index.rbs +61 -6
  76. data/sig/generated/paper_trail_diff/snapshot.rbs +37 -2
  77. data/sig/generated/paper_trail_diff/snapshot_traversal.rbs +29 -0
  78. data/sig/generated/paper_trail_diff/step.rbs +7 -0
  79. data/sig/generated/paper_trail_diff/support.rbs +6 -0
  80. data/sig/generated/paper_trail_diff/time_activity_timeline_builder.rbs +46 -0
  81. data/sig/generated/paper_trail_diff/time_range.rbs +41 -0
  82. data/sig/generated/paper_trail_diff/time_version_range.rbs +27 -0
  83. data/sig/generated/paper_trail_diff/timeline_builder.rbs +6 -5
  84. data/sig/generated/paper_trail_diff/timeline_range.rbs +41 -0
  85. data/sig/generated/paper_trail_diff/traversal.rbs +41 -0
  86. data/sig/generated/paper_trail_diff/traversal_emitter.rbs +16 -0
  87. data/sig/generated/paper_trail_diff/traversal_entry.rbs +52 -0
  88. data/sig/generated/paper_trail_diff/version_association_candidate_scope.rbs +32 -0
  89. data/sig/generated/paper_trail_diff.rbs +24 -8
  90. metadata +49 -4
@@ -0,0 +1,41 @@
1
+ # Generated from lib/paper_trail_diff/traversal.rb with RBS::Inline
2
+
3
+ module PaperTrailDiff
4
+ # Coordinates root lifecycle, scalar, and association traversal.
5
+ class DiffTraversal < TraversalEmitter
6
+ # : (Diff, ^(TraversalEntry) -> void) -> void
7
+ def initialize: (Diff, ^(TraversalEntry) -> void) -> void
8
+
9
+ # : () -> void
10
+ def call: () -> void
11
+
12
+ private
13
+
14
+ @associations: AssociationDiffTraversal
15
+
16
+ @diff: Diff
17
+
18
+ @snapshots: SnapshotTraversal
19
+
20
+ # : () -> void
21
+ def walk_presence_change: () -> void
22
+
23
+ # : (RecordSnapshot?, traversal_state) -> void
24
+ def walk_presence_snapshot: (RecordSnapshot?, traversal_state) -> void
25
+ end
26
+
27
+ # The complete structured difference between two normalized endpoints.
28
+ class Diff
29
+ # Walks semantic changes and the nested state carried by added or removed records.
30
+ # @rbs () { (TraversalEntry) -> void } -> Diff
31
+ # | () -> Enumerator[TraversalEntry, Diff]
32
+ def each_entry: () { (TraversalEntry) -> void } -> Diff
33
+ | () -> Enumerator[TraversalEntry, Diff]
34
+
35
+ # Walks only semantic changes, excluding snapshot state included for context.
36
+ # @rbs () { (TraversalEntry) -> void } -> Diff
37
+ # | () -> Enumerator[TraversalEntry, Diff]
38
+ def each_change: () { (TraversalEntry) -> void } -> Diff
39
+ | () -> Enumerator[TraversalEntry, Diff]
40
+ end
41
+ end
@@ -0,0 +1,16 @@
1
+ # Generated from lib/paper_trail_diff/traversal_emitter.rb with RBS::Inline
2
+
3
+ module PaperTrailDiff
4
+ # Shared entry construction for internal traversal collaborators.
5
+ class TraversalEmitter
6
+ # : (^(TraversalEntry) -> void) -> void
7
+ def initialize: (^(TraversalEntry) -> void) -> void
8
+
9
+ private
10
+
11
+ @receiver: ^(TraversalEntry) -> void
12
+
13
+ # : (kind: Symbol, context: traversal_context, association_path: traversal_association_path, record_path: traversal_record_path, value: untyped, ?association_kind: Symbol?, ?state: traversal_state?, ?attribute: String?) -> void
14
+ def emit: (kind: Symbol, context: traversal_context, association_path: traversal_association_path, record_path: traversal_record_path, value: untyped, ?association_kind: Symbol?, ?state: traversal_state?, ?attribute: String?) -> void
15
+ end
16
+ end
@@ -0,0 +1,52 @@
1
+ # Generated from lib/paper_trail_diff/traversal_entry.rb with RBS::Inline
2
+
3
+ module PaperTrailDiff
4
+ # One immutable location and value emitted while walking a Diff tree.
5
+ class TraversalEntry
6
+ CONTEXTS: untyped
7
+
8
+ STATES: untyped
9
+
10
+ attr_reader kind: Symbol
11
+
12
+ attr_reader context: traversal_context
13
+
14
+ attr_reader association_path: traversal_association_path
15
+
16
+ attr_reader record_path: traversal_record_path
17
+
18
+ attr_reader association_kind: Symbol?
19
+
20
+ attr_reader state: traversal_state?
21
+
22
+ attr_reader attribute: String?
23
+
24
+ attr_reader value: untyped
25
+
26
+ # : (kind: Symbol, context: traversal_context, ?association_path: traversal_association_path, ?record_path: traversal_record_path, ?association_kind: Symbol?, ?state: traversal_state?, ?attribute: String?, ?value: untyped) -> void
27
+ def initialize: (kind: Symbol, context: traversal_context, ?association_path: traversal_association_path, ?record_path: traversal_record_path, ?association_kind: Symbol?, ?state: traversal_state?, ?attribute: String?, ?value: untyped) -> void
28
+
29
+ # : () -> bool
30
+ def change?: () -> bool
31
+
32
+ # : () -> bool
33
+ def included_state?: () -> bool
34
+
35
+ # : () -> String?
36
+ def association: () -> String?
37
+
38
+ # : () -> RecordReference?
39
+ def record: () -> RecordReference?
40
+
41
+ # : () -> Hash[Symbol, untyped]
42
+ def to_h: () -> Hash[Symbol, untyped]
43
+
44
+ private
45
+
46
+ # : (Symbol, Symbol?) -> void
47
+ def validate!: (Symbol, Symbol?) -> void
48
+
49
+ # : (traversal_association_path) -> traversal_association_path
50
+ def immutable_names: (traversal_association_path) -> traversal_association_path
51
+ end
52
+ end
@@ -0,0 +1,32 @@
1
+ # Generated from lib/paper_trail_diff/version_association_candidate_scope.rb with RBS::Inline
2
+
3
+ module PaperTrailDiff
4
+ # Selects association activity from a boundary forward plus the state at that boundary.
5
+ class VersionAssociationCandidateScope
6
+ # : (untyped, untyped, ?end_at: untyped) -> void
7
+ def initialize: (untyped, untyped, ?end_at: untyped) -> void
8
+
9
+ # : (untyped) -> untyped
10
+ def call: (untyped) -> untyped
11
+
12
+ private
13
+
14
+ @end_at: untyped
15
+
16
+ @start_at: untyped
17
+
18
+ @version_class: untyped
19
+
20
+ # : () -> String
21
+ def candidate_condition: () -> String
22
+
23
+ # : (String, String) -> String
24
+ def activity_condition: (String, String) -> String
25
+
26
+ # : (String, String) -> String
27
+ def column: (String, String) -> String
28
+
29
+ # : (String) -> String
30
+ def compact_sql: (String) -> String
31
+ end
32
+ end
@@ -7,20 +7,24 @@ module PaperTrailDiff
7
7
  SUPPORTED_ASSOCIATION_MACROS: untyped
8
8
 
9
9
  # Compares net state between explicit PaperTrail-version or current-record endpoints.
10
- # : (untyped, untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Diff
11
- def self.compare: (untyped, untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Diff
10
+ # : (untyped, untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?reload_live_endpoints: bool) -> Diff
11
+ def self.compare: (untyped, untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?reload_live_endpoints: bool) -> Diff
12
+
13
+ # Compares many independent endpoint pairs while batching current-record loading.
14
+ # : (Array[comparison_input], ?associations: Array[String | Symbol], ?ignore: ignore_option, ?reload_live_endpoints: bool) -> comparison_results
15
+ def self.compare_many: (Array[comparison_input], ?associations: Array[String | Symbol], ?ignore: ignore_option, ?reload_live_endpoints: bool) -> comparison_results
12
16
 
13
17
  # Compares every adjacent reconstructed state in an inclusive version range.
14
- # : (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[Step]
15
- def self.timeline: (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[Step]
18
+ # : (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[Step]
19
+ def self.timeline: (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[Step]
16
20
 
17
21
  # Compares adjacent root and selected-descendant activity boundaries.
18
- # : (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[ActivityStep]
19
- def self.activity_timeline: (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[ActivityStep]
22
+ # : (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[ActivityStep]
23
+ def self.activity_timeline: (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option) -> Array[ActivityStep]
20
24
 
21
25
  # Builds an endpoint diff and root-checkpoint timeline while normalizing each version once.
22
- # : (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?activity: bool) -> Analysis
23
- def self.analyze: (untyped, from: untyped, to: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?activity: bool) -> Analysis
26
+ # : (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?activity: bool) -> Analysis
27
+ def self.analyze: (untyped, ?from: untyped, ?to: untyped, ?within: untyped, ?associations: Array[String | Symbol], ?ignore: ignore_option, ?activity: bool) -> Analysis
24
28
 
25
29
  # Returns the association macros this release can normalize.
26
30
  # : () -> Array[Symbol]
@@ -50,7 +54,19 @@ module PaperTrailDiff
50
54
 
51
55
  type identity = Array[untyped]
52
56
 
57
+ type comparison_input = Hash[String | Symbol, untyped]
58
+
59
+ type comparison_results = Hash[identity, Diff]
60
+
53
61
  type ignore_option = Array[String | Symbol] | Hash[String | Symbol, untyped]
54
62
 
55
63
  type reference_key = :type | :id | "type" | "id"
64
+
65
+ type traversal_context = :change | :included_state
66
+
67
+ type traversal_state = :before | :after
68
+
69
+ type traversal_association_path = Array[String]
70
+
71
+ type traversal_record_path = Array[RecordReference]
56
72
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paper_trail_diff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Williams
@@ -40,20 +40,29 @@ extra_rdoc_files: []
40
40
  files:
41
41
  - CHANGELOG.md
42
42
  - LICENSE
43
+ - QUICKSTART.md
43
44
  - README.md
44
45
  - lib/paper_trail_diff.rb
45
46
  - lib/paper_trail_diff/activity_boundary.rb
47
+ - lib/paper_trail_diff/activity_child_candidate_loader.rb
46
48
  - lib/paper_trail_diff/activity_event.rb
47
49
  - lib/paper_trail_diff/activity_event_snapshot_refresher.rb
50
+ - lib/paper_trail_diff/activity_history.rb
48
51
  - lib/paper_trail_diff/activity_range.rb
49
52
  - lib/paper_trail_diff/activity_root_snapshot_refresher.rb
53
+ - lib/paper_trail_diff/activity_snapshot_delta.rb
50
54
  - lib/paper_trail_diff/activity_snapshot_sequence.rb
51
55
  - lib/paper_trail_diff/activity_timeline_builder.rb
52
56
  - lib/paper_trail_diff/activity_version_collector.rb
53
57
  - lib/paper_trail_diff/analysis.rb
58
+ - lib/paper_trail_diff/association_diff_traversal.rb
54
59
  - lib/paper_trail_diff/association_discovery.rb
55
60
  - lib/paper_trail_diff/association_traversal.rb
56
61
  - lib/paper_trail_diff/branch_snapshot_refresher.rb
62
+ - lib/paper_trail_diff/collection_comparator.rb
63
+ - lib/paper_trail_diff/collection_identity_index.rb
64
+ - lib/paper_trail_diff/collection_transition.rb
65
+ - lib/paper_trail_diff/comparison_batch.rb
57
66
  - lib/paper_trail_diff/configuration.rb
58
67
  - lib/paper_trail_diff/diagnostics.rb
59
68
  - lib/paper_trail_diff/endpoint.rb
@@ -61,8 +70,13 @@ files:
61
70
  - lib/paper_trail_diff/errors.rb
62
71
  - lib/paper_trail_diff/historical_association_reifier.rb
63
72
  - lib/paper_trail_diff/historical_snapshot_store.rb
73
+ - lib/paper_trail_diff/instrumentation.rb
64
74
  - lib/paper_trail_diff/live_association_reader.rb
75
+ - lib/paper_trail_diff/live_endpoint_batch_loader.rb
76
+ - lib/paper_trail_diff/live_endpoint_provider.rb
77
+ - lib/paper_trail_diff/live_graph_collector.rb
65
78
  - lib/paper_trail_diff/paper_trail_adapter.rb
79
+ - lib/paper_trail_diff/preloaded_endpoint_batch_loader.rb
66
80
  - lib/paper_trail_diff/prepared_association_reifier.rb
67
81
  - lib/paper_trail_diff/prepared_edge_loader.rb
68
82
  - lib/paper_trail_diff/prepared_history.rb
@@ -70,26 +84,43 @@ files:
70
84
  - lib/paper_trail_diff/prepared_record_index.rb
71
85
  - lib/paper_trail_diff/snapshot.rb
72
86
  - lib/paper_trail_diff/snapshot_normalizer.rb
87
+ - lib/paper_trail_diff/snapshot_traversal.rb
73
88
  - lib/paper_trail_diff/step.rb
74
89
  - lib/paper_trail_diff/support.rb
90
+ - lib/paper_trail_diff/time_activity_timeline_builder.rb
91
+ - lib/paper_trail_diff/time_range.rb
92
+ - lib/paper_trail_diff/time_version_range.rb
75
93
  - lib/paper_trail_diff/timeline_builder.rb
94
+ - lib/paper_trail_diff/timeline_range.rb
76
95
  - lib/paper_trail_diff/timeline_snapshot_provider.rb
96
+ - lib/paper_trail_diff/traversal.rb
97
+ - lib/paper_trail_diff/traversal_emitter.rb
98
+ - lib/paper_trail_diff/traversal_entry.rb
77
99
  - lib/paper_trail_diff/value_objects.rb
78
100
  - lib/paper_trail_diff/version.rb
101
+ - lib/paper_trail_diff/version_association_candidate_scope.rb
79
102
  - lib/paper_trail_diff/version_range.rb
80
103
  - sig/generated/paper_trail_diff.rbs
81
104
  - sig/generated/paper_trail_diff/activity_boundary.rbs
105
+ - sig/generated/paper_trail_diff/activity_child_candidate_loader.rbs
82
106
  - sig/generated/paper_trail_diff/activity_event.rbs
83
107
  - sig/generated/paper_trail_diff/activity_event_snapshot_refresher.rbs
108
+ - sig/generated/paper_trail_diff/activity_history.rbs
84
109
  - sig/generated/paper_trail_diff/activity_range.rbs
85
110
  - sig/generated/paper_trail_diff/activity_root_snapshot_refresher.rbs
111
+ - sig/generated/paper_trail_diff/activity_snapshot_delta.rbs
86
112
  - sig/generated/paper_trail_diff/activity_snapshot_sequence.rbs
87
113
  - sig/generated/paper_trail_diff/activity_timeline_builder.rbs
88
114
  - sig/generated/paper_trail_diff/activity_version_collector.rbs
89
115
  - sig/generated/paper_trail_diff/analysis.rbs
116
+ - sig/generated/paper_trail_diff/association_diff_traversal.rbs
90
117
  - sig/generated/paper_trail_diff/association_discovery.rbs
91
118
  - sig/generated/paper_trail_diff/association_traversal.rbs
92
119
  - sig/generated/paper_trail_diff/branch_snapshot_refresher.rbs
120
+ - sig/generated/paper_trail_diff/collection_comparator.rbs
121
+ - sig/generated/paper_trail_diff/collection_identity_index.rbs
122
+ - sig/generated/paper_trail_diff/collection_transition.rbs
123
+ - sig/generated/paper_trail_diff/comparison_batch.rbs
93
124
  - sig/generated/paper_trail_diff/configuration.rbs
94
125
  - sig/generated/paper_trail_diff/diagnostics.rbs
95
126
  - sig/generated/paper_trail_diff/endpoint.rbs
@@ -97,8 +128,13 @@ files:
97
128
  - sig/generated/paper_trail_diff/errors.rbs
98
129
  - sig/generated/paper_trail_diff/historical_association_reifier.rbs
99
130
  - sig/generated/paper_trail_diff/historical_snapshot_store.rbs
131
+ - sig/generated/paper_trail_diff/instrumentation.rbs
100
132
  - sig/generated/paper_trail_diff/live_association_reader.rbs
133
+ - sig/generated/paper_trail_diff/live_endpoint_batch_loader.rbs
134
+ - sig/generated/paper_trail_diff/live_endpoint_provider.rbs
135
+ - sig/generated/paper_trail_diff/live_graph_collector.rbs
101
136
  - sig/generated/paper_trail_diff/paper_trail_adapter.rbs
137
+ - sig/generated/paper_trail_diff/preloaded_endpoint_batch_loader.rbs
102
138
  - sig/generated/paper_trail_diff/prepared_association_reifier.rbs
103
139
  - sig/generated/paper_trail_diff/prepared_edge_loader.rbs
104
140
  - sig/generated/paper_trail_diff/prepared_history.rbs
@@ -106,12 +142,21 @@ files:
106
142
  - sig/generated/paper_trail_diff/prepared_record_index.rbs
107
143
  - sig/generated/paper_trail_diff/snapshot.rbs
108
144
  - sig/generated/paper_trail_diff/snapshot_normalizer.rbs
145
+ - sig/generated/paper_trail_diff/snapshot_traversal.rbs
109
146
  - sig/generated/paper_trail_diff/step.rbs
110
147
  - sig/generated/paper_trail_diff/support.rbs
148
+ - sig/generated/paper_trail_diff/time_activity_timeline_builder.rbs
149
+ - sig/generated/paper_trail_diff/time_range.rbs
150
+ - sig/generated/paper_trail_diff/time_version_range.rbs
111
151
  - sig/generated/paper_trail_diff/timeline_builder.rbs
152
+ - sig/generated/paper_trail_diff/timeline_range.rbs
112
153
  - sig/generated/paper_trail_diff/timeline_snapshot_provider.rbs
154
+ - sig/generated/paper_trail_diff/traversal.rbs
155
+ - sig/generated/paper_trail_diff/traversal_emitter.rbs
156
+ - sig/generated/paper_trail_diff/traversal_entry.rbs
113
157
  - sig/generated/paper_trail_diff/value_objects.rbs
114
158
  - sig/generated/paper_trail_diff/version.rbs
159
+ - sig/generated/paper_trail_diff/version_association_candidate_scope.rbs
115
160
  - sig/generated/paper_trail_diff/version_range.rbs
116
161
  homepage: https://github.com/aheathwilliams/paper_trail_diff
117
162
  licenses:
@@ -119,11 +164,11 @@ licenses:
119
164
  metadata:
120
165
  allowed_push_host: https://rubygems.org
121
166
  bug_tracker_uri: https://github.com/aheathwilliams/paper_trail_diff/issues
122
- changelog_uri: https://github.com/aheathwilliams/paper_trail_diff/blob/v0.1.0/CHANGELOG.md
123
- documentation_uri: https://github.com/aheathwilliams/paper_trail_diff/blob/v0.1.0/README.md
167
+ changelog_uri: https://github.com/aheathwilliams/paper_trail_diff/blob/v0.3.0/CHANGELOG.md
168
+ documentation_uri: https://github.com/aheathwilliams/paper_trail_diff/blob/v0.3.0/README.md
124
169
  homepage_uri: https://github.com/aheathwilliams/paper_trail_diff
125
170
  rubygems_mfa_required: 'true'
126
- source_code_uri: https://github.com/aheathwilliams/paper_trail_diff/tree/v0.1.0
171
+ source_code_uri: https://github.com/aheathwilliams/paper_trail_diff/tree/v0.3.0
127
172
  rdoc_options: []
128
173
  require_paths:
129
174
  - lib