zabbix_sender_legacy 0.1.6 → 0.1.7

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: 08e51579b0d2a40c4525fc922cff7ad3c58a5169
4
- data.tar.gz: 4d075d273051178f8c63c80ccd890bcb653f455d
3
+ metadata.gz: d92031a7f486a0399d810cf1df152436ac5fb442
4
+ data.tar.gz: 0ac4a7045f1a90af997ccaec5460cebff7d0cd8a
5
5
  SHA512:
6
- metadata.gz: 6c25025cb74de19dd815364a59375c0ab28cad14d1f365e7dfc14c0cd21493be724232e6848020ca14351262483463988231470e397c052e919f009063e65aa2
7
- data.tar.gz: edcf4f6422eb22091c4997fcb27ff21e34ecac777d871a3bbee7fa07096d11476fbfe41b7b9d4d97b470bbe25fd95d04434a59a9ddd17df5bf2ba2ef3b4b7bbe
6
+ metadata.gz: 2cff1d308fb33fb54a1ea051e92654f1cd1350eb7b757901b58033c56e423a7ffdabf80ff1949288c2a33c89734066f2f82b85b5eb71762f8c2846553e778268
7
+ data.tar.gz: 8207b0d62971f00d0acbb0c08410e973140d699828644566d1b63b3be933ad898bb9dcdd7b3233144e21b3a5f8d2d139749b0f86f0397287b312ddd4bf58e62b
@@ -13,11 +13,11 @@ module ZabbixSenderLegacy
13
13
  raise MissingConfigFile, "Missing config file with #{config_path}"
14
14
  end
15
15
  host, port = parse_config(config_path)
16
- Sender.new(zabbix_host: host, zabbix_port: port)
16
+ Sender.new(host, port)
17
17
  end
18
18
 
19
19
  def new(zabbix_host="127.0.0.1", zabbix_port=10051)
20
- Sender.new(zabbix_host: zabbix_host, zabbix_port: zabbix_port)
20
+ Sender.new(zabbix_host, zabbix_port)
21
21
  end
22
22
 
23
23
  private
@@ -1,3 +1,3 @@
1
1
  module ZabbixSenderLegacy
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zabbix_sender_legacy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - lehn-etracker