foobara 0.0.44 → 0.0.46

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b60c0cc3d83cf48f2ddf1f1e894780ac6734fbc900f7eed95a2330b22e3be91a
4
- data.tar.gz: 33d2d647bbc84b7452dc0bd49d63bd011bba7ee1c7efec41a927dc31bdaf5e9c
3
+ metadata.gz: 60195fb6137fde10c6e482bbdb9c6845571ba1267fbb4c3721f4f5c131b3d778
4
+ data.tar.gz: 7918eb25d72cab1718160c65e0f1ed4b90c4ee70bb0ae5f44176b918d81b55f3
5
5
  SHA512:
6
- metadata.gz: 70a2aad2daf712a50b363cf909a203e393b76ea5e1591d36800030df1dc338eabfeceb233e45dc9a08d2174077c31f389c96b58eb703c6b1666c0a7eff71fc44
7
- data.tar.gz: 13708b13ba186780158224396be937ebdbceda0dd8ff0ac8d07ede3b35dda71013a14413f2548b2891d1ef1a7b54333b0d0383322e6fd3e08a5786d2f6ac1be0
6
+ metadata.gz: 0cc9c5ed39003bcd9b4553341a047f617287555e5000d356282a1f0438da6aacbb876db56c3464590bde0b43998af2969ad14715edfc2562a00d3d2557ce20e5
7
+ data.tar.gz: 0aa89dab1a24bdf943e7caec711caa1ffec58f6769a0d543a97b2a7e839c82cd9559a90e6d9e2f4e51895f862ed3cfa7bbeff19eadb43977a2081359a465dd1f
data/CHANGELOG.md CHANGED
@@ -1,7 +1,8 @@
1
- ## [0.0.44] - 2025-01-03
1
+ ## [0.0.46] - 2025-01-03
2
2
 
3
3
  - Bumped Ruby from 3.2.2 to 3.4.1
4
4
  - Allow passing in a module when registering a "builtin" type
5
+ - Fix AttributesHandlerDesugarizer and PrimaryKeyDesugarizer bugs
5
6
 
6
7
  ## [0.0.42] - 2024-12-23
7
8
 
@@ -4,9 +4,11 @@ module Foobara
4
4
  class ExtendDetachedEntityTypeDeclaration < ExtendModelTypeDeclaration
5
5
  class PrimaryKeyDesugarizer < Desugarizer
6
6
  def applicable?(sugary_type_declaration)
7
- primary_key = sugary_type_declaration[:primary_key]
7
+ if sugary_type_declaration.is_a?(::Hash)
8
+ primary_key = sugary_type_declaration[:primary_key]
8
9
 
9
- primary_key.is_a?(::String)
10
+ primary_key.is_a?(::String)
11
+ end
10
12
  end
11
13
 
12
14
  def desugarize(sugary_type_declaration)
@@ -4,7 +4,7 @@ module Foobara
4
4
  class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
5
5
  class AttributesHandlerDesugarizer < TypeDeclarations::Desugarizer
6
6
  def applicable?(sugary_type_declaration)
7
- sugary_type_declaration[:type] == expected_type_symbol
7
+ sugary_type_declaration.is_a?(::Hash) && sugary_type_declaration[:type] == expected_type_symbol
8
8
  end
9
9
 
10
10
  def expected_type_symbol
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.44
4
+ version: 0.0.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi