karafka 1.2.0.beta4 → 1.3.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.coditsu/ci.yml +3 -0
  5. data/.console_irbrc +1 -3
  6. data/.github/FUNDING.yml +3 -0
  7. data/.github/ISSUE_TEMPLATE/bug_report.md +50 -0
  8. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  9. data/.gitignore +1 -0
  10. data/.ruby-version +1 -1
  11. data/.travis.yml +37 -17
  12. data/CHANGELOG.md +103 -1
  13. data/CONTRIBUTING.md +1 -1
  14. data/Gemfile +6 -2
  15. data/Gemfile.lock +86 -71
  16. data/README.md +20 -8
  17. data/bin/karafka +1 -1
  18. data/certs/mensfeld.pem +25 -0
  19. data/config/errors.yml +38 -5
  20. data/karafka.gemspec +17 -10
  21. data/lib/karafka.rb +8 -15
  22. data/lib/karafka/app.rb +14 -6
  23. data/lib/karafka/attributes_map.rb +14 -13
  24. data/lib/karafka/base_consumer.rb +19 -30
  25. data/lib/karafka/base_responder.rb +51 -29
  26. data/lib/karafka/cli.rb +1 -1
  27. data/lib/karafka/cli/console.rb +11 -9
  28. data/lib/karafka/cli/flow.rb +0 -1
  29. data/lib/karafka/cli/info.rb +3 -1
  30. data/lib/karafka/cli/install.rb +28 -6
  31. data/lib/karafka/cli/server.rb +11 -6
  32. data/lib/karafka/code_reloader.rb +67 -0
  33. data/lib/karafka/connection/{config_adapter.rb → api_adapter.rb} +54 -19
  34. data/lib/karafka/connection/batch_delegator.rb +51 -0
  35. data/lib/karafka/connection/builder.rb +16 -0
  36. data/lib/karafka/connection/client.rb +37 -33
  37. data/lib/karafka/connection/listener.rb +24 -13
  38. data/lib/karafka/connection/message_delegator.rb +36 -0
  39. data/lib/karafka/consumers/callbacks.rb +32 -15
  40. data/lib/karafka/consumers/includer.rb +30 -18
  41. data/lib/karafka/consumers/metadata.rb +10 -0
  42. data/lib/karafka/consumers/responders.rb +2 -2
  43. data/lib/karafka/contracts.rb +10 -0
  44. data/lib/karafka/contracts/config.rb +21 -0
  45. data/lib/karafka/contracts/consumer_group.rb +206 -0
  46. data/lib/karafka/contracts/consumer_group_topic.rb +19 -0
  47. data/lib/karafka/contracts/responder_usage.rb +54 -0
  48. data/lib/karafka/contracts/server_cli_options.rb +29 -0
  49. data/lib/karafka/errors.rb +18 -17
  50. data/lib/karafka/fetcher.rb +28 -30
  51. data/lib/karafka/helpers/class_matcher.rb +11 -1
  52. data/lib/karafka/helpers/config_retriever.rb +1 -1
  53. data/lib/karafka/helpers/inflector.rb +26 -0
  54. data/lib/karafka/helpers/multi_delegator.rb +0 -1
  55. data/lib/karafka/instrumentation/logger.rb +5 -3
  56. data/lib/karafka/instrumentation/monitor.rb +15 -7
  57. data/lib/karafka/instrumentation/proctitle_listener.rb +36 -0
  58. data/lib/karafka/instrumentation/stdout_listener.rb +138 -0
  59. data/lib/karafka/params/builders/metadata.rb +33 -0
  60. data/lib/karafka/params/builders/params.rb +36 -0
  61. data/lib/karafka/params/builders/params_batch.rb +25 -0
  62. data/lib/karafka/params/metadata.rb +35 -0
  63. data/lib/karafka/params/params.rb +68 -0
  64. data/lib/karafka/params/params_batch.rb +35 -20
  65. data/lib/karafka/patches/ruby_kafka.rb +21 -8
  66. data/lib/karafka/persistence/client.rb +15 -11
  67. data/lib/karafka/persistence/{consumer.rb → consumers.rb} +19 -12
  68. data/lib/karafka/persistence/topics.rb +48 -0
  69. data/lib/karafka/process.rb +0 -4
  70. data/lib/karafka/responders/builder.rb +1 -1
  71. data/lib/karafka/responders/topic.rb +6 -8
  72. data/lib/karafka/routing/builder.rb +35 -7
  73. data/lib/karafka/routing/consumer_group.rb +1 -1
  74. data/lib/karafka/routing/consumer_mapper.rb +9 -9
  75. data/lib/karafka/routing/proxy.rb +10 -1
  76. data/lib/karafka/routing/topic.rb +5 -3
  77. data/lib/karafka/routing/topic_mapper.rb +16 -18
  78. data/lib/karafka/serialization/json/deserializer.rb +27 -0
  79. data/lib/karafka/serialization/json/serializer.rb +31 -0
  80. data/lib/karafka/server.rb +30 -37
  81. data/lib/karafka/setup/config.rb +72 -40
  82. data/lib/karafka/setup/configurators/water_drop.rb +8 -4
  83. data/lib/karafka/setup/dsl.rb +0 -1
  84. data/lib/karafka/status.rb +7 -3
  85. data/lib/karafka/templates/{application_consumer.rb.example → application_consumer.rb.erb} +2 -1
  86. data/lib/karafka/templates/{application_responder.rb.example → application_responder.rb.erb} +0 -0
  87. data/lib/karafka/templates/karafka.rb.erb +92 -0
  88. data/lib/karafka/version.rb +1 -1
  89. metadata +95 -60
  90. metadata.gz.sig +4 -0
  91. data/lib/karafka/callbacks.rb +0 -30
  92. data/lib/karafka/callbacks/config.rb +0 -22
  93. data/lib/karafka/callbacks/dsl.rb +0 -16
  94. data/lib/karafka/connection/delegator.rb +0 -46
  95. data/lib/karafka/instrumentation/listener.rb +0 -97
  96. data/lib/karafka/loader.rb +0 -28
  97. data/lib/karafka/params/dsl.rb +0 -156
  98. data/lib/karafka/parsers/json.rb +0 -38
  99. data/lib/karafka/patches/dry_configurable.rb +0 -35
  100. data/lib/karafka/persistence/topic.rb +0 -29
  101. data/lib/karafka/schemas/config.rb +0 -24
  102. data/lib/karafka/schemas/consumer_group.rb +0 -77
  103. data/lib/karafka/schemas/consumer_group_topic.rb +0 -18
  104. data/lib/karafka/schemas/responder_usage.rb +0 -39
  105. data/lib/karafka/schemas/server_cli_options.rb +0 -43
  106. data/lib/karafka/setup/configurators/base.rb +0 -29
  107. data/lib/karafka/setup/configurators/params.rb +0 -25
  108. data/lib/karafka/templates/karafka.rb.example +0 -52
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7df4ccab5fe5e942f4d97bdcb099ed1f754e3902c52775f9272e0f351c879ff
4
- data.tar.gz: 73417de830c717ab59a74375091d45c43308c58b43fd00bdc7bd579b6f2ded6b
3
+ metadata.gz: a84d25cd633f2d94764df3f18b726e0b87a45cf6e8b4ddc06467da75f089aa9e
4
+ data.tar.gz: bfbd912db882d8d4cc0e17a6656c65b3837e9fb8c19d2b1473ec781e7376efc1
5
5
  SHA512:
6
- metadata.gz: 37cfeeb29cf0728d21e1dcd269c0432ec972bd6cc0b08f690fa49c3e2026ab2b8d2c558229c227dded52ee8a631859a17757422041fdce3ad424993573a5e6ac
7
- data.tar.gz: 85061228901bdced44d5cf699d10ceb51a0bc818d39fdbcbd1f24b667d75d459f405262ca9036e63357637850d7084da8e71429808e6fd6f094cfbb82f581f05
6
+ metadata.gz: a4fddb1d956e6c868788c0aca4cce3bd6cd52951adfe33b8046cdce56a0f87f25b0cd5b11836dfc3c50cabf51406645b14d1a0123cb918c168ae1a4d9abab791
7
+ data.tar.gz: 369d09fdd36e12596d8420804e6633e4d173ae8f0e9b40202555f277c50b8ee4331b2acab89aa7fca400fa7904e849bc9dd34a1127fdbae857b1bf4278fdfa28
Binary file
Binary file
@@ -0,0 +1,3 @@
1
+ repository_id: 'd4482d42-f6b5-44ba-a5e4-00989ac519ee'
2
+ api_key: <%= ENV['CODITSU_API_KEY'] %>
3
+ api_secret: <%= ENV['CODITSU_API_SECRET'] %>
@@ -1,11 +1,9 @@
1
1
  # irbrc for Karafka console
2
- require 'karafka'
3
- require Karafka.boot_file
4
2
 
5
3
  IRB.conf[:AUTO_INDENT] = true
6
4
  IRB.conf[:SAVE_HISTORY] = 1000
7
5
  IRB.conf[:USE_READLINE] = true
8
- IRB.conf[:HISTORY_FILE] = "#{Karafka::App.root}/.irb-history"
6
+ IRB.conf[:HISTORY_FILE] = ".irb-history"
9
7
  IRB.conf[:LOAD_MODULES] = [] unless IRB.conf.key?(:LOAD_MODULES)
10
8
 
11
9
  unless IRB.conf[:LOAD_MODULES].include?('irb/completion')
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ open_collective: karafka
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Report an issue with Karafka you've discovered.
4
+ ---
5
+
6
+ *Be clear, concise and precise in your description of the problem.
7
+ Open an issue with a descriptive title and a summary in grammatically correct,
8
+ complete sentences.*
9
+
10
+ *Use the template below when reporting bugs. Please, make sure that
11
+ you're running the latest stable Karafka and that the problem you're reporting
12
+ hasn't been reported (and potentially fixed) already.*
13
+
14
+ *Before filing the ticket you should replace all text above the horizontal
15
+ rule with your own words.*
16
+
17
+ --------
18
+
19
+ ## Expected behavior
20
+
21
+ Describe here how you expected Karafka to behave in this particular situation.
22
+
23
+ ## Actual behavior
24
+
25
+ Describe here what actually happened.
26
+
27
+ ## Steps to reproduce the problem
28
+
29
+ This is extremely important! Providing us with a reliable way to reproduce
30
+ a problem will expedite its solution.
31
+
32
+ ## Your setup details
33
+
34
+ Please provide kafka version and the output of `karafka info` or `bundle exec karafka info` if using Bundler.
35
+
36
+ Here's an example:
37
+
38
+ ```
39
+ $ [bundle exec] karafka info
40
+ Karafka version: 1.3.0
41
+ Ruby version: 2.6.3
42
+ Ruby-kafka version: 0.7.9
43
+ Application client id: karafka-local
44
+ Backend: inline
45
+ Batch fetching: true
46
+ Batch consuming: true
47
+ Boot file: /app/karafka/karafka.rb
48
+ Environment: development
49
+ Kafka seed brokers: ["kafka://kafka:9092"]
50
+ ```
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Suggest new Karafka features or improvements to existing features.
4
+ ---
5
+
6
+ ## Is your feature request related to a problem? Please describe.
7
+
8
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9
+
10
+ ## Describe the solution you'd like
11
+
12
+ A clear and concise description of what you want to happen.
13
+
14
+ ## Describe alternatives you've considered
15
+
16
+ A clear and concise description of any alternative solutions or features you've considered.
17
+
18
+ ## Additional context
19
+
20
+ Add any other context or screenshots about the feature request here.
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  app.god
7
7
 
8
8
  # minimal Rails specific artifacts
9
+ /.coditsu/local.yml
9
10
  db/*.sqlite3
10
11
  /log/development.log
11
12
  /log/production.log
@@ -1 +1 @@
1
- 2.5.0
1
+ 2.6.3
@@ -1,18 +1,38 @@
1
- language: ruby
1
+ services:
2
+ - docker
3
+
4
+ dist: trusty
2
5
  sudo: false
3
- rvm:
4
- - 2.3.0
5
- - 2.3.1
6
- - 2.3.2
7
- - 2.3.3
8
- - 2.3.4
9
- - 2.4.0
10
- - 2.4.1
11
- - 2.4.2
12
- - 2.5.0
13
- - jruby-head
14
- script: bundle exec rspec spec/
15
- env:
16
- global:
17
- - JRUBY_OPTS='--debug'
18
- install: bundle install --jobs=3 --retry=3
6
+ cache: bundler
7
+
8
+ git:
9
+ depth: false
10
+
11
+ test: &test
12
+ stage: Test
13
+ language: ruby
14
+ before_install:
15
+ - gem install bundler
16
+ - gem update --system
17
+ script: bundle exec rspec
18
+
19
+ jobs:
20
+ include:
21
+ - <<: *test
22
+ rvm: 2.6.3
23
+ - <<: *test
24
+ rvm: 2.5.5
25
+ - <<: *test
26
+ rvm: 2.4.5
27
+
28
+ - stage: coditsu
29
+ language: ruby
30
+ rvm: 2.6.3
31
+ before_install:
32
+ - gem update --system
33
+ - gem install bundler
34
+ script: \curl -sSL https://api.coditsu.io/run/ci | bash
35
+
36
+ stages:
37
+ - coditsu
38
+ - test
@@ -1,6 +1,107 @@
1
1
  # Karafka framework changelog
2
2
 
3
- ## 1.2.0.beta4
3
+ ## 1.3.0.rc1 (31.07.2019)
4
+ - Drop support for Kafka 0.10 in favor of native support for Kafka 0.11.
5
+ - Update ruby-kafka to the 0.7 version
6
+ - Support messages headers receiving
7
+ - Message bus unification
8
+ - Parser available in metadata
9
+ - Cleanup towards moving to a non-global state app management
10
+ - Drop Ruby 2.3 support
11
+ - Support for Ruby 2.6.3
12
+ - `Karafka::Loader` has been removed in favor of Zeitwerk
13
+ - Schemas are now contracts
14
+ - #393 - Reorganize responders - removed `multiple_usage` constrain
15
+ - #388 - ssl_client_cert_chain sync
16
+ - #300 - Store value in a value key and replace its content with parsed version - without root merge
17
+ - #331 - Disallow building groups without topics
18
+ - #340 - Instrumentation unification. Better and more consistent naming
19
+ - #340 - Procline instrumentation for a nicer process name
20
+ - #342 - Change default for `fetcher_max_queue_size` from `100` to `10` to lower max memory usage
21
+ - #345 - Cleanup exceptions names
22
+ - #341 - Split connection delegator into batch delegator and single_delegator
23
+ - #351 - Rename `#retrieve!` to `#parse!` on params and `#parsed` to `parse!` on params batch.
24
+ - #351 - Adds '#first' for params_batch that returns parsed first element from the params_batch object.
25
+ - #360 - Single params consuming mode automatically parses data specs
26
+ - #359 - Divide mark_as_consumed into mark_as_consumed and mark_as_consumed!
27
+ - #356 - Provide a `#values` for params_batch to extract only values of objects from the params_batch
28
+ - #363 - Too shallow ruby-kafka version lock
29
+ - #354 - Expose consumer heartbeat
30
+ - #377 - Remove the persistent setup in favor of persistence
31
+ - #375 - Sidekiq Backend parser mismatch
32
+ - #369 - Single consumer can support more than one topic
33
+ - #288 - Drop dependency on `activesupport` gem
34
+ - #371 - SASL over SSL
35
+ - #392 - Move params redundant data to metadata
36
+ - #335 - Metadata access from within the consumer
37
+ - #402 - Delayed reconnection upon critical failures
38
+ - #405 - `reconnect_timeout` value is now being validated
39
+ - #437 - Specs ensuring that the `#437` won't occur in the `1.3` release
40
+ - #426 - ssl client cert key password
41
+ - #444 - add certificate and private key validation
42
+ - #460 - Decouple responder "parser" (generator?) from topic.parser (benissimo)
43
+ - #463 - Split parsers into serializers / deserializers
44
+ - #473 - Support SASL OAuthBearer Authentication
45
+ - #475 - Disallow subscribing to the same topic with multiple consumers
46
+ - #485 - Setting shutdown_timeout to nil kills the app without waiting for anything
47
+ - #487 - Make listeners as instances
48
+ - #29 - Consumer class names must have the word "Consumer" in it in order to work (Sidekiq backend)
49
+ - #491 - irb is missing for console to work
50
+ - #502 - Karafka process hangs when sending multiple sigkills
51
+ - #506 - ssl_verify_hostname sync
52
+ - #483 - Upgrade dry-validation before releasing 1.3
53
+ - #492 - Use Zeitwerk for code reload in development
54
+ - #508 - Reset the consumers instances upon reconnecting to a cluster
55
+ - [#530](https://github.com/karafka/karafka/pull/530) - expose ruby and ruby-kafka version
56
+ - [534](https://github.com/karafka/karafka/pull/534) - Allow to use headers in the deserializer object
57
+
58
+ ## 1.2.11
59
+ - [#470](https://github.com/karafka/karafka/issues/470) Karafka not working with dry-configurable 0.8
60
+
61
+ ## 1.2.10
62
+ - [#453](https://github.com/karafka/karafka/pull/453) require `Forwardable` module
63
+
64
+ ## 1.2.9
65
+ - Critical exceptions now will cause consumer to stop instead of retrying without a break
66
+ - #412 - Fix dry-inflector dependency lock in gemspec
67
+ - #414 - Backport to 1.2 the delayed retry upon failure
68
+ - #437 - Raw message is no longer added to params after ParserError raised
69
+
70
+ ## 1.2.8
71
+ - #408 - Responder Topic Lookup Bug on Heroku
72
+
73
+ ## 1.2.7
74
+ - Unlock Ruby-kafka version with a warning
75
+
76
+ ## 1.2.6
77
+ - Lock WaterDrop to 1.2.3
78
+ - Lock Ruby-Kafka to 0.6.x (support for 0.7 will be added in Karafka 1.3)
79
+ - #382 - Full logging with AR, etc for development mode when there is Rails integration
80
+
81
+ ## 1.2.5
82
+ - #354 - Expose consumer heartbeat
83
+ - #373 - Async producer not working properly with responders
84
+
85
+ ## 1.2.4
86
+ - #332 - Fetcher for max queue size
87
+
88
+ ## 1.2.3
89
+ - #313 - support PLAINTEXT and SSL for scheme
90
+ - #288 - drop activesupport callbacks in favor of notifications
91
+ - #320 - Pausing indefinetely with nil pause timeout doesn't work
92
+ - #318 - Partition pausing doesn't work with custom topic mappers
93
+ - Rename ConfigAdapter to ApiAdapter to better reflect what it does
94
+ - #317 - Manual offset committing doesn't work with custom topic mappers
95
+ - #319 - Support for exponential backoff in pause
96
+
97
+ ## 1.2.2
98
+ - #312 - Broken for ActiveSupport 5.2.0
99
+
100
+ ## 1.2.1
101
+ - #304 - Unification of error instrumentation event details
102
+ - #306 - Using file logger from within a trap context upon shutdown is impossible
103
+
104
+ ## 1.2.0
4
105
  - Spec improvements
5
106
  - #260 - Specs missing randomization
6
107
  - #251 - Shutdown upon non responding (unreachable) cluster is not possible
@@ -17,6 +118,7 @@
17
118
  - #184 - Seek to
18
119
  - #284 - Dynamic Params parent class
19
120
  - #275 - ssl_ca_certs_from_system
121
+ - #296 - Instrument forceful exit with an error
20
122
  - Replaced some of the activesupport parts with dry-inflector
21
123
  - Lower ActiveSupport dependency
22
124
  - Remove configurators in favor of the after_init block configurator
@@ -4,7 +4,7 @@
4
4
 
5
5
  First, thank you for considering contributing to karafka! It's people like you that make the open source community such a great community! 😊
6
6
 
7
- We welcome any type of contribution, not only code. You can help with
7
+ We welcome any type of contribution, not only code. You can help with:
8
8
  - **QA**: file bug reports, the more details you can give the better (e.g. screenshots with the console open)
9
9
  - **Marketing**: writing blog posts, howto's, printing stickers, ...
10
10
  - **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, ...
data/Gemfile CHANGED
@@ -4,8 +4,12 @@ source 'https://rubygems.org'
4
4
 
5
5
  gemspec
6
6
 
7
- group :development, :test do
7
+ gem 'waterdrop', '1.3.0.rc1'
8
+
9
+ group :test do
10
+ gem 'activesupport'
11
+ gem 'byebug'
12
+ gem 'factory_bot'
8
13
  gem 'rspec'
9
14
  gem 'simplecov'
10
- gem 'timecop'
11
15
  end
@@ -1,123 +1,138 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka (1.2.0.beta4)
5
- activesupport (>= 4.0)
6
- dry-configurable (~> 0.7)
7
- dry-inflector (~> 0.1.1)
8
- dry-monitor (~> 0.1)
9
- dry-validation (~> 0.11)
4
+ karafka (1.3.0.rc1)
5
+ dry-configurable (~> 0.8)
6
+ dry-inflector (~> 0.1)
7
+ dry-monitor (~> 0.3)
8
+ dry-validation (~> 1.2)
10
9
  envlogic (~> 1.0)
10
+ irb (~> 1.0)
11
11
  multi_json (>= 1.12)
12
12
  rake (>= 11.3)
13
- require_all (>= 1.4)
14
- ruby-kafka (>= 0.5.3)
15
- thor (~> 0.19)
16
- waterdrop (~> 1.2)
13
+ ruby-kafka (>= 0.7.8)
14
+ thor (~> 0.20)
15
+ waterdrop (~> 1.3.0.rc1)
16
+ zeitwerk (~> 2.1)
17
17
 
18
18
  GEM
19
19
  remote: https://rubygems.org/
20
20
  specs:
21
- activesupport (5.1.5)
21
+ activesupport (5.2.3)
22
22
  concurrent-ruby (~> 1.0, >= 1.0.2)
23
- i18n (~> 0.7)
23
+ i18n (>= 0.7, < 2)
24
24
  minitest (~> 5.1)
25
25
  tzinfo (~> 1.1)
26
- concurrent-ruby (1.0.5)
27
- delivery_boy (0.2.4)
28
- king_konf (~> 0.1.8)
29
- ruby-kafka (~> 0.5.1)
26
+ byebug (11.0.1)
27
+ concurrent-ruby (1.1.5)
28
+ delivery_boy (0.2.8)
29
+ king_konf (~> 0.3)
30
+ ruby-kafka (~> 0.7.8)
30
31
  diff-lcs (1.3)
31
- docile (1.1.5)
32
- dry-configurable (0.7.0)
32
+ digest-crc (0.4.1)
33
+ docile (1.3.2)
34
+ dry-configurable (0.8.3)
33
35
  concurrent-ruby (~> 1.0)
34
- dry-container (0.6.0)
36
+ dry-core (~> 0.4, >= 0.4.7)
37
+ dry-container (0.7.2)
35
38
  concurrent-ruby (~> 1.0)
36
39
  dry-configurable (~> 0.1, >= 0.1.3)
37
- dry-core (0.4.4)
40
+ dry-core (0.4.8)
38
41
  concurrent-ruby (~> 1.0)
39
- dry-equalizer (0.2.0)
40
- dry-events (0.1.0)
42
+ dry-equalizer (0.2.2)
43
+ dry-events (0.2.0)
41
44
  concurrent-ruby (~> 1.0)
42
45
  dry-core (~> 0.4)
43
46
  dry-equalizer (~> 0.2)
44
- dry-inflector (0.1.1)
45
- dry-logic (0.4.2)
46
- dry-container (~> 0.2, >= 0.2.6)
47
+ dry-inflector (0.1.2)
48
+ dry-initializer (3.0.1)
49
+ dry-logic (1.0.2)
50
+ concurrent-ruby (~> 1.0)
47
51
  dry-core (~> 0.2)
48
52
  dry-equalizer (~> 0.2)
49
- dry-monitor (0.1.2)
53
+ dry-monitor (0.3.1)
50
54
  dry-configurable (~> 0.5)
55
+ dry-core (~> 0.4)
51
56
  dry-equalizer (~> 0.2)
52
57
  dry-events (~> 0.1)
53
- rouge (~> 2.0, >= 2.2.1)
54
- dry-types (0.12.2)
58
+ dry-schema (1.3.1)
55
59
  concurrent-ruby (~> 1.0)
56
- dry-configurable (~> 0.1)
57
- dry-container (~> 0.3)
58
- dry-core (~> 0.2, >= 0.2.1)
60
+ dry-configurable (~> 0.8, >= 0.8.3)
61
+ dry-core (~> 0.4)
59
62
  dry-equalizer (~> 0.2)
60
- dry-logic (~> 0.4, >= 0.4.2)
61
- inflecto (~> 0.0.0, >= 0.0.2)
62
- dry-validation (0.11.1)
63
+ dry-initializer (~> 3.0)
64
+ dry-logic (~> 1.0)
65
+ dry-types (~> 1.0)
66
+ dry-types (1.1.1)
63
67
  concurrent-ruby (~> 1.0)
64
- dry-configurable (~> 0.1, >= 0.1.3)
65
- dry-core (~> 0.2, >= 0.2.1)
68
+ dry-container (~> 0.3)
69
+ dry-core (~> 0.4, >= 0.4.4)
70
+ dry-equalizer (~> 0.2, >= 0.2.2)
71
+ dry-inflector (~> 0.1, >= 0.1.2)
72
+ dry-logic (~> 1.0, >= 1.0.2)
73
+ dry-validation (1.2.1)
74
+ concurrent-ruby (~> 1.0)
75
+ dry-container (~> 0.7, >= 0.7.1)
76
+ dry-core (~> 0.4)
66
77
  dry-equalizer (~> 0.2)
67
- dry-logic (~> 0.4, >= 0.4.0)
68
- dry-types (~> 0.12.0)
69
- envlogic (1.0.4)
70
- activesupport
71
- i18n (0.9.5)
78
+ dry-initializer (~> 3.0)
79
+ dry-schema (~> 1.0, >= 1.3.1)
80
+ envlogic (1.1.0)
81
+ dry-inflector (~> 0.1)
82
+ factory_bot (5.0.2)
83
+ activesupport (>= 4.2.0)
84
+ i18n (1.6.0)
72
85
  concurrent-ruby (~> 1.0)
73
- inflecto (0.0.2)
74
- json (2.1.0)
75
- king_konf (0.1.10)
86
+ irb (1.0.0)
87
+ json (2.2.0)
88
+ king_konf (0.3.7)
76
89
  minitest (5.11.3)
77
90
  multi_json (1.13.1)
78
- null-logger (0.1.4)
79
- rake (12.3.0)
80
- require_all (2.0.0)
81
- rouge (2.2.1)
82
- rspec (3.7.0)
83
- rspec-core (~> 3.7.0)
84
- rspec-expectations (~> 3.7.0)
85
- rspec-mocks (~> 3.7.0)
86
- rspec-core (3.7.1)
87
- rspec-support (~> 3.7.0)
88
- rspec-expectations (3.7.0)
91
+ rake (12.3.3)
92
+ rspec (3.8.0)
93
+ rspec-core (~> 3.8.0)
94
+ rspec-expectations (~> 3.8.0)
95
+ rspec-mocks (~> 3.8.0)
96
+ rspec-core (3.8.2)
97
+ rspec-support (~> 3.8.0)
98
+ rspec-expectations (3.8.4)
89
99
  diff-lcs (>= 1.2.0, < 2.0)
90
- rspec-support (~> 3.7.0)
91
- rspec-mocks (3.7.0)
100
+ rspec-support (~> 3.8.0)
101
+ rspec-mocks (3.8.1)
92
102
  diff-lcs (>= 1.2.0, < 2.0)
93
- rspec-support (~> 3.7.0)
94
- rspec-support (3.7.1)
95
- ruby-kafka (0.5.3)
96
- simplecov (0.15.1)
97
- docile (~> 1.1.0)
103
+ rspec-support (~> 3.8.0)
104
+ rspec-support (3.8.2)
105
+ ruby-kafka (0.7.9)
106
+ digest-crc
107
+ simplecov (0.17.0)
108
+ docile (~> 1.1)
98
109
  json (>= 1.8, < 3)
99
110
  simplecov-html (~> 0.10.0)
100
111
  simplecov-html (0.10.2)
101
- thor (0.20.0)
112
+ thor (0.20.3)
102
113
  thread_safe (0.3.6)
103
- timecop (0.9.1)
104
114
  tzinfo (1.2.5)
105
115
  thread_safe (~> 0.1)
106
- waterdrop (1.2.0)
116
+ waterdrop (1.3.0.rc1)
107
117
  delivery_boy (~> 0.2)
108
- dry-configurable (~> 0.7)
109
- dry-monitor (~> 0.1)
110
- dry-validation (~> 0.11)
111
- null-logger
118
+ dry-configurable (~> 0.8)
119
+ dry-monitor (~> 0.3)
120
+ dry-validation (~> 1.2)
121
+ ruby-kafka (>= 0.7.8)
122
+ zeitwerk (~> 2.1)
123
+ zeitwerk (2.1.9)
112
124
 
113
125
  PLATFORMS
114
126
  ruby
115
127
 
116
128
  DEPENDENCIES
129
+ activesupport
130
+ byebug
131
+ factory_bot
117
132
  karafka!
118
133
  rspec
119
134
  simplecov
120
- timecop
135
+ waterdrop (= 1.3.0.rc1)
121
136
 
122
137
  BUNDLED WITH
123
- 1.16.1
138
+ 2.0.2