deimos-kafka 1.0.0.pre.beta15 → 1.0.0.pre.beta16
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/README.md +3 -3
- data/lib/deimos/configuration.rb +3 -2
- data/lib/deimos/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e0cb253905c806b2609cbce7566dc2fa987b9f2f49e91adcc38525cfe1a6a56
|
4
|
+
data.tar.gz: cf80441d26aaf4e0a69aa96dc344ccd895474e7c2a4d1c2ae5f1ff2ac6d25a95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9483035eddaa55c3add6291f60c89c701c8c0b4fa220e6757890cae9c4e45282d20d1737247f2dbb15ee907d678529f6c0e0e0a00037bd504ae7cf8529a18e65
|
7
|
+
data.tar.gz: da780f7e8a19e5a1e700d14cc3c80f2a659d905b0f9d1f064ccafef40dc4aec5e10b3b0eb50fd66843aea7bde3077f0fe3226425785fe21661110d67feb4be29
|
data/README.md
CHANGED
@@ -32,7 +32,7 @@ Built on Phobos and hence Ruby-Kafka.
|
|
32
32
|
|
33
33
|
Add this line to your application's Gemfile:
|
34
34
|
```ruby
|
35
|
-
gem 'deimos'
|
35
|
+
gem 'deimos-kafka'
|
36
36
|
```
|
37
37
|
|
38
38
|
And then execute:
|
@@ -41,7 +41,7 @@ And then execute:
|
|
41
41
|
|
42
42
|
Or install it yourself as:
|
43
43
|
|
44
|
-
$ gem install deimos
|
44
|
+
$ gem install deimos-kafka
|
45
45
|
|
46
46
|
# Versioning
|
47
47
|
|
@@ -52,7 +52,7 @@ are for bugfixes or new functionality which does not affect existing code. You
|
|
52
52
|
should be locking your Gemfile to the minor version:
|
53
53
|
|
54
54
|
```ruby
|
55
|
-
gem 'deimos', '~>
|
55
|
+
gem 'deimos-kafka', '~> 1.1'
|
56
56
|
```
|
57
57
|
|
58
58
|
# Configuration
|
data/lib/deimos/configuration.rb
CHANGED
@@ -81,8 +81,9 @@ module Deimos
|
|
81
81
|
# @param other_config [Configuration]
|
82
82
|
# @return [Boolean]
|
83
83
|
def phobos_config_changed?(other_config)
|
84
|
-
phobos_keys = %w(phobos_config_file ssl_ca_cert ssl_client_cert ssl_client_cert_key)
|
85
|
-
phobos_keys.any? { |key| self.send(key) != other_config.send(key) }
|
84
|
+
phobos_keys = %w(seed_broker phobos_config_file ssl_ca_cert ssl_client_cert ssl_client_cert_key)
|
85
|
+
return true if phobos_keys.any? { |key| self.send(key) != other_config.send(key) }
|
86
|
+
other_config.logger != self.logger
|
86
87
|
end
|
87
88
|
end
|
88
89
|
end
|
data/lib/deimos/version.rb
CHANGED