zabbix-api-simple 0.1.1 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/.gitlab-ci.yml +12 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +1 -0
- data/LICENSE.txt +21 -0
- data/README.md +7 -3
- data/Rakefile +8 -1
- data/bin/zapishell.rb +1 -1
- data/exe/zapishell.rb +16 -2
- data/lib/zabbix/api/client.rb +112 -12
- data/lib/zabbix/api/version.rb +1 -1
- data/lib/zabbix/api.rb +0 -6
- data/public/Zabbix/Api/Client.html +1102 -0
- data/public/Zabbix/Api/FaradayMiddleware/ZabbixApiRequest.html +341 -0
- data/public/Zabbix/Api/FaradayMiddleware.html +115 -0
- data/public/Zabbix/Api/OpenStruct.html +384 -0
- data/public/Zabbix/Api/ZabbixStruct.html +384 -0
- data/public/Zabbix/Api.html +135 -0
- data/public/Zabbix.html +117 -0
- data/public/_index.html +180 -0
- data/public/class_list.html +51 -0
- data/public/css/common.css +1 -0
- data/public/css/full_list.css +58 -0
- data/public/css/style.css +497 -0
- data/public/file.CHANGELOG.html +89 -0
- data/public/file.LICENSE.html +70 -0
- data/public/file.README.html +190 -0
- data/public/file_list.html +66 -0
- data/public/frames.html +17 -0
- data/public/index.html +190 -0
- data/public/js/app.js +314 -0
- data/public/js/full_list.js +216 -0
- data/public/js/jquery.js +4 -0
- data/public/method_list.html +195 -0
- data/public/top-level-namespace.html +110 -0
- data/zabbix-api.gemspec +4 -3
- metadata +46 -6
- data/Gemfile.lock +0 -47
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zabbix-api-simple
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Parker
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: This Zabbix API library strives to be syntactically as similar as possible
|
56
70
|
to the API as described by the Zabbix documentation
|
57
71
|
email:
|
@@ -62,8 +76,10 @@ extensions: []
|
|
62
76
|
extra_rdoc_files: []
|
63
77
|
files:
|
64
78
|
- ".gitignore"
|
79
|
+
- ".gitlab-ci.yml"
|
80
|
+
- CHANGELOG.md
|
65
81
|
- Gemfile
|
66
|
-
-
|
82
|
+
- LICENSE.txt
|
67
83
|
- README.md
|
68
84
|
- Rakefile
|
69
85
|
- bin/bundle
|
@@ -78,13 +94,37 @@ files:
|
|
78
94
|
- lib/zabbix/api.rb
|
79
95
|
- lib/zabbix/api/client.rb
|
80
96
|
- lib/zabbix/api/version.rb
|
97
|
+
- public/Zabbix.html
|
98
|
+
- public/Zabbix/Api.html
|
99
|
+
- public/Zabbix/Api/Client.html
|
100
|
+
- public/Zabbix/Api/FaradayMiddleware.html
|
101
|
+
- public/Zabbix/Api/FaradayMiddleware/ZabbixApiRequest.html
|
102
|
+
- public/Zabbix/Api/OpenStruct.html
|
103
|
+
- public/Zabbix/Api/ZabbixStruct.html
|
104
|
+
- public/_index.html
|
105
|
+
- public/class_list.html
|
106
|
+
- public/css/common.css
|
107
|
+
- public/css/full_list.css
|
108
|
+
- public/css/style.css
|
109
|
+
- public/file.CHANGELOG.html
|
110
|
+
- public/file.LICENSE.html
|
111
|
+
- public/file.README.html
|
112
|
+
- public/file_list.html
|
113
|
+
- public/frames.html
|
114
|
+
- public/index.html
|
115
|
+
- public/js/app.js
|
116
|
+
- public/js/full_list.js
|
117
|
+
- public/js/jquery.js
|
118
|
+
- public/method_list.html
|
119
|
+
- public/top-level-namespace.html
|
81
120
|
- zabbix-api.gemspec
|
82
|
-
homepage: https://gitlab.
|
121
|
+
homepage: https://svdasein.gitlab.io/zabbix-api
|
83
122
|
licenses: []
|
84
123
|
metadata:
|
85
124
|
allowed_push_host: https://rubygems.org
|
86
|
-
homepage_uri: https://gitlab.
|
125
|
+
homepage_uri: https://svdasein.gitlab.io/zabbix-api
|
87
126
|
source_code_uri: https://gitlab.com/svdasein/zabbix-api
|
127
|
+
changelog_uri: https://gitlab.com/svdasein/zabbix-api/-/blob/master/CHANGELOG.md
|
88
128
|
post_install_message:
|
89
129
|
rdoc_options: []
|
90
130
|
require_paths:
|
@@ -100,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
140
|
- !ruby/object:Gem::Version
|
101
141
|
version: '0'
|
102
142
|
requirements: []
|
103
|
-
rubygems_version: 3.1.
|
143
|
+
rubygems_version: 3.1.6
|
104
144
|
signing_key:
|
105
145
|
specification_version: 4
|
106
146
|
summary: Zabbix API wrapper
|
data/Gemfile.lock
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
zabbix-api-simple (0.1.1)
|
5
|
-
amazing_print
|
6
|
-
faraday
|
7
|
-
optimist
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
amazing_print (1.3.0)
|
13
|
-
coderay (1.1.3)
|
14
|
-
faraday (1.4.1)
|
15
|
-
faraday-excon (~> 1.1)
|
16
|
-
faraday-net_http (~> 1.0)
|
17
|
-
faraday-net_http_persistent (~> 1.1)
|
18
|
-
multipart-post (>= 1.2, < 3)
|
19
|
-
ruby2_keywords (>= 0.0.4)
|
20
|
-
faraday-excon (1.1.0)
|
21
|
-
faraday-net_http (1.0.1)
|
22
|
-
faraday-net_http_persistent (1.1.0)
|
23
|
-
io-console (0.5.9)
|
24
|
-
irb (1.3.5)
|
25
|
-
reline (>= 0.1.5)
|
26
|
-
method_source (1.0.0)
|
27
|
-
multipart-post (2.1.1)
|
28
|
-
optimist (3.0.1)
|
29
|
-
pry (0.14.1)
|
30
|
-
coderay (~> 1.1)
|
31
|
-
method_source (~> 1.0)
|
32
|
-
rake (13.0.3)
|
33
|
-
reline (0.2.5)
|
34
|
-
io-console (~> 0.5)
|
35
|
-
ruby2_keywords (0.0.4)
|
36
|
-
|
37
|
-
PLATFORMS
|
38
|
-
ruby
|
39
|
-
|
40
|
-
DEPENDENCIES
|
41
|
-
irb
|
42
|
-
pry
|
43
|
-
rake (~> 13.0)
|
44
|
-
zabbix-api-simple!
|
45
|
-
|
46
|
-
BUNDLED WITH
|
47
|
-
2.2.16
|