zabbix-api-simple 0.1.3 → 0.2.0
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 +11 -0
- data/Gemfile +1 -0
- data/LICENSE.txt +21 -0
- data/README.md +9 -9
- data/Rakefile +8 -1
- data/exe/zapishell.rb +15 -1
- data/images/2021-09-19_09-38.png +0 -0
- data/images/2021-09-19_09-40.png +0 -0
- data/images/zabbix-api-simple-simplicity.png +0 -0
- data/lib/zabbix/api/client.rb +100 -3
- 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 +186 -0
- data/public/file_list.html +66 -0
- data/public/frames.html +17 -0
- data/public/images/zabbix-api-simple-simplicity.png +0 -0
- data/public/index.html +186 -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 +6 -4
- metadata +67 -7
metadata
CHANGED
@@ -1,17 +1,45 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zabbix-api-simple
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Parker
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday-net_http
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: optimist
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
16
44
|
requirements:
|
17
45
|
- - ">="
|
@@ -25,7 +53,7 @@ dependencies:
|
|
25
53
|
- !ruby/object:Gem::Version
|
26
54
|
version: '0'
|
27
55
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
56
|
+
name: amazing_print
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
30
58
|
requirements:
|
31
59
|
- - ">="
|
@@ -39,7 +67,7 @@ dependencies:
|
|
39
67
|
- !ruby/object:Gem::Version
|
40
68
|
version: '0'
|
41
69
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
70
|
+
name: pry
|
43
71
|
requirement: !ruby/object:Gem::Requirement
|
44
72
|
requirements:
|
45
73
|
- - ">="
|
@@ -62,7 +90,10 @@ extensions: []
|
|
62
90
|
extra_rdoc_files: []
|
63
91
|
files:
|
64
92
|
- ".gitignore"
|
93
|
+
- ".gitlab-ci.yml"
|
94
|
+
- CHANGELOG.md
|
65
95
|
- Gemfile
|
96
|
+
- LICENSE.txt
|
66
97
|
- README.md
|
67
98
|
- Rakefile
|
68
99
|
- bin/bundle
|
@@ -74,16 +105,44 @@ files:
|
|
74
105
|
- bin/setup
|
75
106
|
- bin/zapishell.rb
|
76
107
|
- exe/zapishell.rb
|
108
|
+
- images/2021-09-19_09-38.png
|
109
|
+
- images/2021-09-19_09-40.png
|
110
|
+
- images/zabbix-api-simple-simplicity.png
|
77
111
|
- lib/zabbix/api.rb
|
78
112
|
- lib/zabbix/api/client.rb
|
79
113
|
- lib/zabbix/api/version.rb
|
114
|
+
- public/Zabbix.html
|
115
|
+
- public/Zabbix/Api.html
|
116
|
+
- public/Zabbix/Api/Client.html
|
117
|
+
- public/Zabbix/Api/FaradayMiddleware.html
|
118
|
+
- public/Zabbix/Api/FaradayMiddleware/ZabbixApiRequest.html
|
119
|
+
- public/Zabbix/Api/OpenStruct.html
|
120
|
+
- public/Zabbix/Api/ZabbixStruct.html
|
121
|
+
- public/_index.html
|
122
|
+
- public/class_list.html
|
123
|
+
- public/css/common.css
|
124
|
+
- public/css/full_list.css
|
125
|
+
- public/css/style.css
|
126
|
+
- public/file.CHANGELOG.html
|
127
|
+
- public/file.LICENSE.html
|
128
|
+
- public/file.README.html
|
129
|
+
- public/file_list.html
|
130
|
+
- public/frames.html
|
131
|
+
- public/images/zabbix-api-simple-simplicity.png
|
132
|
+
- public/index.html
|
133
|
+
- public/js/app.js
|
134
|
+
- public/js/full_list.js
|
135
|
+
- public/js/jquery.js
|
136
|
+
- public/method_list.html
|
137
|
+
- public/top-level-namespace.html
|
80
138
|
- zabbix-api.gemspec
|
81
|
-
homepage: https://gitlab.
|
139
|
+
homepage: https://svdasein.gitlab.io/zabbix-api
|
82
140
|
licenses: []
|
83
141
|
metadata:
|
84
142
|
allowed_push_host: https://rubygems.org
|
85
|
-
homepage_uri: https://gitlab.
|
143
|
+
homepage_uri: https://svdasein.gitlab.io/zabbix-api
|
86
144
|
source_code_uri: https://gitlab.com/svdasein/zabbix-api
|
145
|
+
changelog_uri: https://gitlab.com/svdasein/zabbix-api/-/blob/master/CHANGELOG.md
|
87
146
|
post_install_message:
|
88
147
|
rdoc_options: []
|
89
148
|
require_paths:
|
@@ -99,7 +158,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
158
|
- !ruby/object:Gem::Version
|
100
159
|
version: '0'
|
101
160
|
requirements: []
|
102
|
-
|
161
|
+
rubyforge_project:
|
162
|
+
rubygems_version: 2.7.6
|
103
163
|
signing_key:
|
104
164
|
specification_version: 4
|
105
165
|
summary: Zabbix API wrapper
|