From 6af62d64ef6ba4fa6fab3457f62e54fb84ffefdb Mon Sep 17 00:00:00 2001 From: Andrey Aleksandrov Date: Tue, 29 Aug 2017 14:40:47 +0300 Subject: [PATCH] fix yard doc client params Signed-off-by: Andrey Aleksandrov --- lib/zabbixapi/client.rb | 12 ++++++------ lib/zabbixapi/version.rb | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/zabbixapi/client.rb b/lib/zabbixapi/client.rb index 8006a68..cae024e 100644 --- a/lib/zabbixapi/client.rb +++ b/lib/zabbixapi/client.rb @@ -35,12 +35,12 @@ def auth # Initializes a new Client object # # @param options [Hash] - # @options opts [String] :url The url of zabbixapi(example: 'http://localhost/zabbix/api_jsonrpc.php') - # @options opts [String] :user - # @options opts [String] :password - # @options opts [String] :http_user A user for basic auth.(optional) - # @options opts [String] :http_password A password for basic auth.(optional) - # @options opts [Integer] :timeout Set timeout for requests in seconds.(default: 60) + # @option opts [String] :url The url of zabbixapi(example: 'http://localhost/zabbix/api_jsonrpc.php') + # @option opts [String] :user + # @option opts [String] :password + # @option opts [String] :http_user A user for basic auth.(optional) + # @option opts [String] :http_password A password for basic auth.(optional) + # @option opts [Integer] :timeout Set timeout for requests in seconds.(default: 60) # # @return [ZabbixApi::Client] def initialize(options = {}) diff --git a/lib/zabbixapi/version.rb b/lib/zabbixapi/version.rb index cfa61e8..0cbba33 100644 --- a/lib/zabbixapi/version.rb +++ b/lib/zabbixapi/version.rb @@ -1,3 +1,3 @@ class ZabbixApi - VERSION = '3.2.0'.freeze + VERSION = '3.2.1'.freeze end