hoardable 0.12.5 → 0.12.6
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 +4 -4
- data/lib/hoardable/database_client.rb +14 -0
- data/lib/hoardable/has_one.rb +3 -16
- data/lib/hoardable/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f7aee7a5af21b6cb079385ea2e49eb243b420c797eb8044f14af18f14abdd23
|
4
|
+
data.tar.gz: c92fc3a0adc3c253856f393c6478514e6f1fe83237b75a37b89dd01325e94773
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c24c3d1f3a985c0169a9c5d89335ef322fb86d45b8492e81197c089bf30f7431d94340d2b9d1805f42fd381bf52fcc4991ceb7fb66429ee87c5cf7025fc29c99
|
7
|
+
data.tar.gz: 171dc6db5742a1bde4f78aa9c9990325cf9658884e147888d938e02f79e0d739dd145d266c8ede202d0ee859e8a4daa323b9c8c9d12af173d002f5535577dadb
|
@@ -40,6 +40,20 @@ module Hoardable
|
|
40
40
|
)
|
41
41
|
end
|
42
42
|
|
43
|
+
def has_one_find_conditions(reflection)
|
44
|
+
{
|
45
|
+
reflection.type => source_record.class.name.sub(/Version$/, ''),
|
46
|
+
reflection.foreign_key => source_record.hoardable_id,
|
47
|
+
'name' => (reflection.name.to_s.sub(/^rich_text_/, '') if reflection.class_name.match?(/RichText$/))
|
48
|
+
}.reject { |k, v| k.nil? || v.nil? }
|
49
|
+
end
|
50
|
+
|
51
|
+
def has_one_at_timestamp
|
52
|
+
Hoardable.instance_variable_get('@at') || source_record.updated_at
|
53
|
+
rescue NameError
|
54
|
+
raise(UpdatedAtColumnMissingError, source_record.class.table_name)
|
55
|
+
end
|
56
|
+
|
43
57
|
def source_attributes_without_primary_key
|
44
58
|
source_record.attributes_before_type_cast.without(source_primary_key)
|
45
59
|
end
|
data/lib/hoardable/has_one.rb
CHANGED
@@ -18,27 +18,14 @@ module Hoardable
|
|
18
18
|
reflection = _reflections['#{name}']
|
19
19
|
return super if reflection.klass.name.match?(/^ActionText/)
|
20
20
|
|
21
|
-
super&.at(
|
22
|
-
reflection.klass.at(
|
23
|
-
|
24
|
-
reflection.type => self.class.name.sub(/Version$/, ''),
|
25
|
-
reflection.foreign_key => hoardable_id
|
26
|
-
}.reject { |key, _| key.blank? }
|
21
|
+
super&.at(hoardable_client.has_one_at_timestamp) ||
|
22
|
+
reflection.klass.at(hoardable_client.has_one_at_timestamp).find_by(
|
23
|
+
hoardable_client.has_one_find_conditions(reflection)
|
27
24
|
)
|
28
25
|
end
|
29
26
|
RUBY
|
30
27
|
end
|
31
28
|
end
|
32
|
-
|
33
|
-
included do
|
34
|
-
private
|
35
|
-
|
36
|
-
def hoardable_at_timestamp
|
37
|
-
Hoardable.instance_variable_get('@at') || updated_at
|
38
|
-
rescue NameError
|
39
|
-
raise(UpdatedAtColumnMissingError, self.class.table_name)
|
40
|
-
end
|
41
|
-
end
|
42
29
|
end
|
43
30
|
private_constant :HasOne
|
44
31
|
end
|
data/lib/hoardable/version.rb
CHANGED