zabbix-client 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37cf81b7ef3559cfb4199eea0338d1990e9b52d2
4
- data.tar.gz: 544d6f8d3d8fd360729b5352a2af0a316a7e5e45
3
+ metadata.gz: afe57c5c0df8e0697b078819f389c24800851c5f
4
+ data.tar.gz: 39f8ae2f99cd3ad53a1526a89c82021a9c11d08e
5
5
  SHA512:
6
- metadata.gz: 91e85581088aa200d91b1daba210937237e103cb13db5198d689a8bb2089359155adef63f7d2f750db9379ebf65d82531337df06f5ff0b5e30f1d83161e83185
7
- data.tar.gz: 68199bc81acba251c13a1b8da97780d462b839600ca458c5de1024f654d61c7e58fbe6efd5bae93c5d8a1576b2b472cac6b0fc8078a7247837757f37a61f51f1
6
+ metadata.gz: 0d79e5942658df87f604146100f0f5530459ded6190bb9714a01349d87b6e1d25caa98f2e44f8d01968943903b8ca37ef2630ab950edf1d8f4b5ff2c99895b7e
7
+ data.tar.gz: fccd34bde530893ec6ebe9095ce73b21f76ed5d0dc56880b0160f2dbf4a3ba1b09e18e38956ea3809dfd85bf0f45f1d60cf03d227d1e18dc1f870d30b6646b3a
@@ -67,7 +67,7 @@ class Zabbix::Client
67
67
 
68
68
  proxy_user = @client.options[:proxy_user]
69
69
  proxy_password = @client.options[:proxy_password]
70
- http = Net::HTTP.Proxy(nil, nil).new(@client.url.host, @client.url.port)
70
+ http = Net::HTTP.Proxy(proxy_user, proxy_password).new(@client.url.host, @client.url.port)
71
71
 
72
72
  if @client.url.scheme == 'https'
73
73
  http.use_ssl = true
@@ -1,5 +1,5 @@
1
1
  module Zabbix
2
2
  class Client
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zabbix-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara