deimos-ruby 1.14.3 → 1.14.6
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 +13 -0
- data/README.md +1 -1
- data/docs/CONFIGURATION.md +2 -0
- data/lib/deimos/active_record_consume/batch_consumption.rb +4 -3
- data/lib/deimos/config/configuration.rb +4 -0
- data/lib/deimos/consume/batch_consumption.rb +12 -12
- data/lib/deimos/version.rb +1 -1
- data/lib/generators/deimos/schema_class/templates/schema_class.rb.tt +2 -2
- data/lib/generators/deimos/schema_class_generator.rb +28 -1
- data/spec/generators/schema_class_generator_spec.rb +10 -2
- data/spec/schemas/com/my-namespace/MySchemaId_key.avsc +1 -1
- data/spec/snapshots/consumers-no-nest.snap +1150 -0
- data/spec/snapshots/consumers.snap +1177 -0
- data/spec/snapshots/consumers_and_producers-no-nest.snap +941 -0
- data/spec/snapshots/consumers_and_producers.snap +974 -0
- data/spec/snapshots/consumers_circular-no-nest.snap +1255 -15
- data/spec/snapshots/consumers_circular.snap +1280 -21
- data/spec/snapshots/consumers_complex_types-no-nest.snap +1138 -84
- data/spec/snapshots/consumers_complex_types.snap +1208 -111
- data/spec/snapshots/consumers_nested-no-nest.snap +1200 -0
- data/spec/snapshots/consumers_nested.snap +1219 -0
- data/spec/snapshots/namespace_folders.snap +1429 -0
- data/spec/snapshots/producers_with_key-no-nest.snap +1250 -7
- data/spec/snapshots/producers_with_key.snap +1256 -0
- metadata +5 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deimos-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.14.
|
4
|
+
version: 1.14.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Orner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: avro_turf
|
@@ -532,6 +532,7 @@ files:
|
|
532
532
|
- spec/snapshots/consumers_complex_types.snap
|
533
533
|
- spec/snapshots/consumers_nested-no-nest.snap
|
534
534
|
- spec/snapshots/consumers_nested.snap
|
535
|
+
- spec/snapshots/namespace_folders.snap
|
535
536
|
- spec/snapshots/producers_with_key-no-nest.snap
|
536
537
|
- spec/snapshots/producers_with_key.snap
|
537
538
|
- spec/spec_helper.rb
|
@@ -565,7 +566,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
565
566
|
- !ruby/object:Gem::Version
|
566
567
|
version: '0'
|
567
568
|
requirements: []
|
568
|
-
rubygems_version: 3.
|
569
|
+
rubygems_version: 3.3.3
|
569
570
|
signing_key:
|
570
571
|
specification_version: 4
|
571
572
|
summary: Kafka libraries for Ruby.
|
@@ -639,6 +640,7 @@ test_files:
|
|
639
640
|
- spec/snapshots/consumers_complex_types.snap
|
640
641
|
- spec/snapshots/consumers_nested-no-nest.snap
|
641
642
|
- spec/snapshots/consumers_nested.snap
|
643
|
+
- spec/snapshots/namespace_folders.snap
|
642
644
|
- spec/snapshots/producers_with_key-no-nest.snap
|
643
645
|
- spec/snapshots/producers_with_key.snap
|
644
646
|
- spec/spec_helper.rb
|