dina 3.2.2.0 → 3.2.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.
- checksums.yaml +4 -4
- data/lib/dina/models/object_store/file_parser.rb +5 -5
- data/lib/dina/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56cefe56fb211ba64245e501279d02f1fc7303e70869effc600124cd41b296f3
|
4
|
+
data.tar.gz: 5326bd07e0e3de469a80399d94c4d64f3b78b6b931c8331962771b69606f4750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9a3156fa6769eb5e0326736663dda9bca06329357cc10c4068603098965b88369cc61262515ba98b5f765fb1d197278b37634df60626fb6d77e212961fb8946
|
7
|
+
data.tar.gz: b7c189fee23fe4610a85b1759f5ef16aa05bbc92c6dde11f43c0d0c6b6344438cee80d42bce21037078d8b969db219b3b4884cee8a48d8ed279e21a834c461e3
|
@@ -77,19 +77,19 @@ module Dina
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def handle_errors(result_set, data)
|
80
|
-
result_set.errors = ErrorCollector.new(data.fetch("errors", []))
|
80
|
+
result_set.errors = ::JsonApiClient::ErrorCollector.new(data.fetch("errors", []))
|
81
81
|
end
|
82
82
|
|
83
83
|
def handle_meta(result_set, data)
|
84
|
-
result_set.meta = MetaData.new(data.fetch("meta", {}), result_set.record_class)
|
84
|
+
result_set.meta = ::JsonApiClient::MetaData.new(data.fetch("meta", {}), result_set.record_class)
|
85
85
|
end
|
86
86
|
|
87
87
|
def handle_links(result_set, data)
|
88
|
-
result_set.links = Linking::TopLevelLinks.new(result_set.record_class, data.fetch("links", {}))
|
88
|
+
result_set.links = ::JsonApiClient::Linking::TopLevelLinks.new(result_set.record_class, data.fetch("links", {}))
|
89
89
|
end
|
90
90
|
|
91
91
|
def handle_relationships(result_set, data)
|
92
|
-
result_set.relationships = Relationships::TopLevelRelations.new(result_set.record_class, data.fetch("relationships", {}))
|
92
|
+
result_set.relationships = ::JsonApiClient::Relationships::TopLevelRelations.new(result_set.record_class, data.fetch("relationships", {}))
|
93
93
|
end
|
94
94
|
|
95
95
|
def handle_pagination(result_set, data)
|
@@ -97,7 +97,7 @@ module Dina
|
|
97
97
|
end
|
98
98
|
|
99
99
|
def handle_included(result_set, data)
|
100
|
-
result_set.included = IncludedData.new(result_set, data.fetch("included", []))
|
100
|
+
result_set.included = ::JsonApiClient::IncludedData.new(result_set, data.fetch("included", []))
|
101
101
|
end
|
102
102
|
end
|
103
103
|
end
|
data/lib/dina/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dina
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David P. Shorthouse
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-03-
|
12
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json_api_client
|