foobara 0.0.46 → 0.0.47

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: 60195fb6137fde10c6e482bbdb9c6845571ba1267fbb4c3721f4f5c131b3d778
4
- data.tar.gz: 7918eb25d72cab1718160c65e0f1ed4b90c4ee70bb0ae5f44176b918d81b55f3
3
+ metadata.gz: b307418792bdb9ffc486a5f7280d67838100daac32a7826277612121612304a9
4
+ data.tar.gz: e6e6c541731cadc39c9c64c9f759c3d347e291fa9731351d33248d9b27ec8de5
5
5
  SHA512:
6
- metadata.gz: 0cc9c5ed39003bcd9b4553341a047f617287555e5000d356282a1f0438da6aacbb876db56c3464590bde0b43998af2969ad14715edfc2562a00d3d2557ce20e5
7
- data.tar.gz: 0aa89dab1a24bdf943e7caec711caa1ffec58f6769a0d543a97b2a7e839c82cd9559a90e6d9e2f4e51895f862ed3cfa7bbeff19eadb43977a2081359a465dd1f
6
+ metadata.gz: d76ba08fc4bc43e51a3c99ec9a780da84e57e9b15d6b29b1782e916ace9adbc198f6e1723852232e4c04766a5979c367bdc1dae6ec020ec3d5d742c61bb4a667
7
+ data.tar.gz: 95a5ae616494aa957e57e465700a7330b1224bf2d4bb43482f5c13e35a5cabfa63b74e239492136a0e1d75f44c578b0b9a02abc7de64a0cadfd8053769de9341
data/CHANGELOG.md CHANGED
@@ -1,8 +1,7 @@
1
- ## [0.0.46] - 2025-01-03
1
+ ## [0.0.47] - 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
6
5
 
7
6
  ## [0.0.42] - 2024-12-23
8
7
 
@@ -4,11 +4,9 @@ module Foobara
4
4
  class ExtendDetachedEntityTypeDeclaration < ExtendModelTypeDeclaration
5
5
  class PrimaryKeyDesugarizer < Desugarizer
6
6
  def applicable?(sugary_type_declaration)
7
- if sugary_type_declaration.is_a?(::Hash)
8
- primary_key = sugary_type_declaration[:primary_key]
7
+ primary_key = sugary_type_declaration[:primary_key]
9
8
 
10
- primary_key.is_a?(::String)
11
- end
9
+ primary_key.is_a?(::String)
12
10
  end
13
11
 
14
12
  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.is_a?(::Hash) && sugary_type_declaration[:type] == expected_type_symbol
7
+ sugary_type_declaration[:type] == expected_type_symbol
8
8
  end
9
9
 
10
10
  def expected_type_symbol
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.46
4
+ version: 0.0.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-03 00:00:00.000000000 Z
10
+ date: 2025-01-04 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bigdecimal