foobara 0.0.70 → 0.0.71
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/CHANGELOG.md +4 -0
- data/projects/model_attribute_helpers/src/attribute_helpers.rb +4 -4
- 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: 3ceb4cde26286e2c3f8dfdf8bb4d0d939da11044b0312e2bafa51977a0071649
|
4
|
+
data.tar.gz: c3748ac6703dd5dfd098debb2a435c245dac8694dabdbcc2919ab357171aa9f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f31cafa7b0a11b3c6236e87983279f3b6b43d3881426b68ca7288cc896d27906bc263c82868a97379c47faad06b1e79aff4429be4bafe0b1e92586c09e11e0f
|
7
|
+
data.tar.gz: 83d3b0b5e5a4750358d1a641511e27cc8d8d559fc1cfc9e55970c9dc3b957568f0e0308070590730a65063f030a4d12b89957a43eeda4c77c21df8c012943751
|
data/CHANGELOG.md
CHANGED
@@ -25,7 +25,7 @@ module Foobara
|
|
25
25
|
respond_to?(:foobara_primary_key_attribute)
|
26
26
|
end
|
27
27
|
|
28
|
-
def foobara_attributes_for_update(require_primary_key:
|
28
|
+
def foobara_attributes_for_update(require_primary_key: true)
|
29
29
|
foobara_attributes_for_aggregate_update(require_primary_key:)
|
30
30
|
end
|
31
31
|
|
@@ -40,7 +40,7 @@ module Foobara
|
|
40
40
|
Foobara::TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
|
41
41
|
end
|
42
42
|
|
43
|
-
def foobara_attributes_for_aggregate_update(require_primary_key:
|
43
|
+
def foobara_attributes_for_aggregate_update(require_primary_key: true, initial: true)
|
44
44
|
declaration = foobara_attributes_type.declaration_data
|
45
45
|
declaration = Util.deep_dup(declaration)
|
46
46
|
|
@@ -51,7 +51,7 @@ module Foobara
|
|
51
51
|
if require_primary_key
|
52
52
|
declaration[:required] = [foobara_primary_key_attribute]
|
53
53
|
else
|
54
|
-
TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
|
54
|
+
declaration = TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
@@ -68,7 +68,7 @@ module Foobara
|
|
68
68
|
declaration
|
69
69
|
end
|
70
70
|
|
71
|
-
def foobara_attributes_for_atom_update(require_primary_key:
|
71
|
+
def foobara_attributes_for_atom_update(require_primary_key: true)
|
72
72
|
declaration = foobara_attributes_type.declaration_data
|
73
73
|
declaration = Util.deep_dup(declaration)
|
74
74
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.71
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bigdecimal
|