protobuf-nats 0.10.3 → 0.10.4

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: 167e2b896360bdf341fbdc1812de23e69cf28c2bf25057180fa68507176d8c55
4
- data.tar.gz: 6ee287bffca6e3b5efeba47f76a43be764f38bee331a8d3164d3d1592dd132b4
3
+ metadata.gz: 1c0f99feffeb6c233028cc0f6ef5a3a3193e8e5974e69b31a45ef0779e240d57
4
+ data.tar.gz: a296bec5b07fb71d713a5e92f3de90b11f19f1f63c929649cbec2f666be7a9b7
5
5
  SHA512:
6
- metadata.gz: 516f3f999e4c332fd3b211455d57514f2c01f13ef8d0cac8cd2d846c5139471d2c0f4cf63d839d3c3ecd3383b9782f0ac554c43923a8e611c8a1dd9b498419b2
7
- data.tar.gz: f50854739d873a49f920f2cdabd229315722ebc42c833598b4f6a1cdcb5a6d4ca7040eb2a710487b7741270c28cb3314388492b488ab931677409d785bc6e7c5
6
+ metadata.gz: c792b9b7efc00fa9e430e63ac84cf9f36586475a84007a47df426fd42b16da5cb6eaf419ba0badc1e05b61a049378322c2f70d7b9eddc17392bedd58c8702386
7
+ data.tar.gz: 9438620b728b973db2e5a343052ad033d7cc78bb10c48c0b3c2d676114e8f2af8b2dd94fbfac4d39eed0f17e643b574cd0c86b50ecbd7722e0d5cc29c868d060
data/README.md CHANGED
@@ -158,7 +158,7 @@ The java-nats client is temporarily forked to support jruby > 9.2.10.0. The livi
158
158
 
159
159
  ## Contributing
160
160
 
161
- Bug reports and pull requests are welcome on GitHub at https://github.com/abrandoned/protobuf-nats.
161
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mxenabled/protobuf-nats.
162
162
 
163
163
 
164
164
  ## License
@@ -40,7 +40,12 @@ module Protobuf
40
40
  config_path = ENV["PROTOBUF_NATS_CONFIG_PATH"] || ::File.join("config", "protobuf_nats.yml")
41
41
  absolute_config_path = ::File.expand_path(config_path)
42
42
  if ::File.exists?(absolute_config_path)
43
- yaml_config = ::YAML.load_file(absolute_config_path)[env]
43
+ # Psych 4 and newer requires unsafe_load_file in order for aliases to be used
44
+ yaml_config = if ::YAML.respond_to?(:unsafe_load_file)
45
+ ::YAML.unsafe_load_file(absolute_config_path)[env]
46
+ else
47
+ ::YAML.load_file(absolute_config_path)[env]
48
+ end
44
49
  end
45
50
 
46
51
  DEFAULTS.each_pair do |key, value|
@@ -1,5 +1,5 @@
1
1
  module Protobuf
2
2
  module Nats
3
- VERSION = "0.10.3"
3
+ VERSION = "0.10.4"
4
4
  end
5
5
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{ ruby-protobuf client/server for nats }
13
13
  spec.description = %q{ ruby-protobuf client/server for nats }
14
- #spec.homepage = "TODO: Put your gem's website or public repo URL here."
14
+ spec.homepage = "https://github.com/mxenabled/protobuf-nats"
15
15
  spec.license = "MIT"
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protobuf-nats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Dewitt
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-25 00:00:00.000000000 Z
11
+ date: 2022-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -185,7 +185,7 @@ files:
185
185
  - lib/protobuf/nats/version.rb
186
186
  - protobuf-nats.gemspec
187
187
  - scripts/install_gnatsd.sh
188
- homepage:
188
+ homepage: https://github.com/mxenabled/protobuf-nats
189
189
  licenses:
190
190
  - MIT
191
191
  metadata:
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  - !ruby/object:Gem::Version
206
206
  version: '0'
207
207
  requirements: []
208
- rubygems_version: 3.1.2
208
+ rubygems_version: 3.2.28
209
209
  signing_key:
210
210
  specification_version: 4
211
211
  summary: ruby-protobuf client/server for nats