rimless 0.1.2 → 0.1.3

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: 01ec097f4d8aa1a0eae5c185084007172e85390f851d133661a54be8dc69db62
4
- data.tar.gz: 1f1342d8b12f755a3946134c5c40c68b947d0859bb42357a6613ada3af267fbd
3
+ metadata.gz: 62f10b707303cc0acc9d4637243029f12f12483c1b36024ba0493421cac71321
4
+ data.tar.gz: 001a04109810927bed5466032f91c91e053d11a1ea7d6c90b02db39a229b4102
5
5
  SHA512:
6
- metadata.gz: 7507e3e875b07f31738824477a920acebe363394da19d025cacacd55dd4adc04e393a334bd31afd43f448fb5edf5d2df3252b1f11fb8fdf01b45b9d579c79463
7
- data.tar.gz: 3fabf04a4670849c9c56cfb9a8c7cbaaff06a0069d0b1b2c98d8d5f297dd8a30d9249853aba676459bf5ca15d41e36b0f6bc8e4a78a508b672c14e656b173dd9
6
+ metadata.gz: ca56ffbdfa884f4eb04115e87f981ab693f81518d2b0facd0ed3dc59b9c4640af4b38cfcc0f3d5a5431c0c237d3009eba56b77a0b3fc602b19bbaf8baca879c1
7
+ data.tar.gz: bb06f82b5172422f715bbce79a52785344d8fa1deca8beeb698667fb3a2a4bea9ec297462b76c22d394e5dcd2ec30a4f93bd99a177f9e4eb0dc447b9b276f138
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.1.3
2
+
3
+ * Check for unset and empty values while configuring dependencies
4
+
1
5
  ### 0.1.2
2
6
 
3
7
  * Skip the configuration of the AvroTurf gem in case no schema registry URL is
@@ -22,7 +22,7 @@ module Rimless
22
22
  # should be available, otherwise the message producing just
23
23
  # fails/raise.
24
24
  return if Rimless.configuration.kafka_brokers.empty? \
25
- || !Rimless.configuration.client_id
25
+ || Rimless.configuration.client_id.blank?
26
26
 
27
27
  WaterDrop.setup do |config|
28
28
  # Activate message delivery and use the default logger
@@ -49,7 +49,7 @@ module Rimless
49
49
  # available. Its fine to skip this for scenarios where not the full
50
50
  # application configuration is available (eg. on Rails asset
51
51
  # precompilations, etc)
52
- return unless Rimless.configuration.schema_registry_url
52
+ return if Rimless.configuration.schema_registry_url.blank?
53
53
 
54
54
  # Setup a global available Apache Avro decoder/encoder with support for
55
55
  # the Confluent Schema Registry, but first create a helper instance
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Rimless
4
4
  # The version of the +rimless+ gem
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.3'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer