rbZabbix 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/ChangeLog.rdoc +59 -0
  3. data/TODO.rdoc +12 -0
  4. metadata +121 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 01f30f608ae7f5b1d5760e7c3a255d8d7fe9c599
4
+ data.tar.gz: cea62e06792690de6917f30ea3b4e55bdb6fc0dd
5
+ SHA512:
6
+ metadata.gz: af9ecee3c2e6dcd40f4c6aa7428d0b2cd36acec47d06e9f540736e9a74b635be489a3fc45dcae9d12d6411177fc4fed1c55a34cef12a9333b9269548062de47b
7
+ data.tar.gz: b8729a84a035effaf9eeb4b23322642fae92e1c58473be6ae58dfc268ba79634ec53fc97943dbf9005b54cc91f8388571ca58888ca0fcff8943d0d0d459c8d19
@@ -0,0 +1,59 @@
1
+ = ChangeLog for Zabby
2
+
3
+ List of visible changes:
4
+
5
+ == v0.1.3 (2015/03/30)
6
+
7
+ * Updated zClass.rb to include numerous API methods which have been added post-1.8
8
+
9
+ == v0.1.2 (2012/03/27)
10
+
11
+ * Older Zabbix 1.8.x used "user.authenticate" instead of "user.login", we must try both methods.
12
+ * Improve command line parsing. It is now easier to pass parameters to a "zabbysh" script withtout
13
+ having to prepend "--".
14
+ * Make some methods private.
15
+ * Internal: add an primary key to Zabby classes (not used yet).
16
+
17
+ == v0.1.1 (2012/03/14)
18
+
19
+ * Initialization code (the argument given to "Zabby.init") was not executed.
20
+ * Update documentation and code sample for the barebone API ot get it working on
21
+ Ruby 1.8.x.
22
+
23
+ == v0.1.0 (2012/03/14)
24
+
25
+ * Major refactoring: Zabbix items are now represented by classes instead
26
+ of class instances ("Host" vs. "host", "Item" vs. "item") and their
27
+ methods are now class methods.
28
+ * Simplify code, remove unused or useless methods.
29
+ * Move helper methods to their own module.
30
+ * Update documentation and improve code samples.
31
+ * Online "help" command.
32
+ * Get rid of the elegant but buggy "set <param> <value>" syntax, the only
33
+ valid syntax for setting parameters is "set :<param> => <value>".
34
+ * Improve exceptions definition.
35
+
36
+ == v0.0.5 (2012/01/05)
37
+
38
+ * Better command file parsing and add rcfile support.
39
+ * Better handling of the default JSON RPC script name in the URL.
40
+ * Add a 'loggedin?' alias for 'logged_in?'.
41
+ * Ignore 'doc' directory.
42
+ * List of docs to generate with Yard is now specified in .yardopts.
43
+ * Improve Gemspec file.
44
+
45
+ == v0.0.4 (2011/12/21)
46
+
47
+ * Same as v0.0.3 that I could not publish on rubygems.org
48
+
49
+ == v0.0.3 (2011/12/21)
50
+
51
+ * Improve documentation and add all Zabbix API verbs
52
+
53
+ == v0.0.2 (2011/12/20)
54
+
55
+ * First public release.
56
+
57
+ == v0.0.1 (2011/12/18)
58
+
59
+ * Unpublished.
@@ -0,0 +1,12 @@
1
+ = TODO list for Zabby
2
+
3
+ Zabby is still a young projet! There are many features missing and possible improvements:
4
+
5
+ - Document the code with *Yard*
6
+ - Write tests:
7
+ - Use RSpec
8
+ - Use a _webmock_ to simulate a Zabix Server, maybe *VCR*
9
+ - Validate API verbs
10
+ - Betting Exceptions and error handling
11
+ - Add online help to the shell
12
+ - Improve or merge +zabbysh+ and +zabbyrb+
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rbZabbix
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4
5
+ platform: ruby
6
+ authors:
7
+ - Levi Jarick
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 1.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 2.0.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 2.0.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 0.8.7
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 0.8.7
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: |-
84
+ rbZabbix is a Zabby API and CLI. It provides a provisioning tool for
85
+ creating, updating and querying Zabbix objects (hosts, items, triggers, etc.) through the web
86
+ service based on the Zabby gem by Farzad Farid.
87
+ email:
88
+ - Levi.Jarick@ubeek.net
89
+ executables: []
90
+ extensions: []
91
+ extra_rdoc_files:
92
+ - TODO.rdoc
93
+ - ChangeLog.rdoc
94
+ files:
95
+ - ChangeLog.rdoc
96
+ - TODO.rdoc
97
+ homepage: http://github.com/ubeek/rbZabbix/
98
+ licenses:
99
+ - Simplified BSD
100
+ metadata: {}
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubyforge_project:
117
+ rubygems_version: 2.4.6
118
+ signing_key:
119
+ specification_version: 4
120
+ summary: Ruby Zabbix API, scripting language and command line interface
121
+ test_files: []