foobara 0.0.18 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20e1fd1d627256c51ce809f550eec383139b59e29b6d45062deac0f0d3a0b3ec
4
- data.tar.gz: 59f5be1a4dbbf0085971965bd23e7f7ff077fd61d18ec0cb903a48e2a4f8196c
3
+ metadata.gz: 3687c6cad513f9e95339296d167c404a589a0a6678f5b3d981fd773ee9decce6
4
+ data.tar.gz: 03e56b2b52cda67986e229a4de88706f0999d816988d9117fac42157688878c8
5
5
  SHA512:
6
- metadata.gz: f8da4d579c0e7b159cb1a4531589f310d52e755312f33fc72195b8e2f64c599d797b2b2329b8bbccc58a42bd2f5640f1a7716e58d5edf158955a4774d4b6a29d
7
- data.tar.gz: 9de070ec54db593d33a5234630dc4c8c0ab43e9605dd6630dcde55ee4fc73d51c3469cb8fbb5fe97c03592889e9c787b8450e1a07936977dbc3bfc7bdf13067a
6
+ metadata.gz: 2b1db3dd06cd337aaa8e6c46fd919717340ee961917c7eb485afdb1b9405408878348c4c9cad668f2de68fa7b5e12643dea554e7d7dad0b9dd79956d307dac63
7
+ data.tar.gz: 637e39bb8f1d010c154ea17d330600d938de9448a87694338cd0c01bd56222d9f0b519932db10f6701136677b096eb17d6754bc5dac121f3daf397df28c42437
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
- ## [0.0.18] - 2024-11-30
1
+ ## [0.0.20] - 2024-12-01
2
+
3
+ - Fix delayed_connections bug in command connector
4
+
5
+ ## [0.0.19] - 2024-11-30
2
6
 
3
7
  - Add some noop crud driver method implementations to
4
8
  make implementing simple crud drivers easier
9
+ - Allow serializers to be created without declaration_data
5
10
 
6
11
  ## [0.0.17] - 2024-11-22
7
12
 
@@ -266,6 +266,8 @@ module Foobara
266
266
  const = Object.const_get(registerable_name)
267
267
  connect(const, *args, **opts)
268
268
  end
269
+
270
+ delayed_connections.clear
269
271
  end
270
272
 
271
273
  def connect(registerable, *, **)
@@ -17,6 +17,10 @@ module Foobara
17
17
  declaration_data
18
18
  end
19
19
 
20
+ def initialize(declaration_data = {})
21
+ super
22
+ end
23
+
20
24
  def transform(object)
21
25
  serialize(object)
22
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-30 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foobara-util