sensu-plugins-supervisor 1.0.1 → 1.0.2

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: 715133a09a70f9ac86561b03a772193da915f073
4
- data.tar.gz: ebef561e897794e732b2a45ccc9e9338be9796e5
3
+ metadata.gz: e160e0c0675041b72a912032ae3816ab3c731e40
4
+ data.tar.gz: 234e787e07e2f0b59bc2d8f03e9c35f7d048d656
5
5
  SHA512:
6
- metadata.gz: 42d05b56096ed4be7a6f58a4cb8a9f1384e3229c7279945613426371977b60be4b42f326a18fd527abb016e7ecfdd8532078125098021d56449a019abeb34101
7
- data.tar.gz: d7e0f0e482c3664fdfac6b70d2ab1c56bcea7a515f1ba66cccdf4da7da65d03e1935151f37a9507f6728bd9946e271a00b48da1d366c967f0fd8c6f22353e398
6
+ metadata.gz: a402718650d745e69cce9b4b53fb344b6e6d872d9a423bdf0866a1f6fbdf3bca52b30173ab42f5692dccc6a2a39d427531928b189e4035e482d37af6042f7bb7
7
+ data.tar.gz: 559ea4e6c2e4e4bccb346e2e93b0a9f8ac519a6658ac8b1e196fd89b3b4a1ddcc49910dfbf7e6936e2074044c6c5d69724f014e6b03e0fc6d4d8fd2e3da5ff4a
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+
8
+ ## [1.0.2] 2017-06-01
9
+ - sensu-plugins-supervisor.gemspec: update Gemspec and README as per issue https://github.com/sensu-plugins/sensu-plugins-supervisor/issues/15
10
+
7
11
  ## [1.0.1] 2017-06-01
8
12
  ### Fixed
9
13
  - check-supervisor-socket.rb: update XMLRPC::XMLParser::XMLStreamParser to XMLRPC::XMLParser::LibXMLStreamParser as per issue https://github.com/sensu-plugins/sensu-plugins-supervisor/issues/16
@@ -47,8 +51,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
47
51
  ### Added
48
52
  - initial release
49
53
 
50
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.1...HEAD
51
- [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.1...1.0.0
54
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.2...HEAD
55
+ [1.0.2]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.1...1.0.2
56
+ [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.0...1.0.1
52
57
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.4...1.0.0
53
58
  [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.3...0.0.4
54
59
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.2...0.0.3
data/README.md CHANGED
@@ -16,6 +16,18 @@
16
16
 
17
17
  ## Installation
18
18
 
19
+ You will need the `expat` development library installed prior to installing this plugin. For CentOS/RHEL systems:
20
+
21
+ ```
22
+ yum install expat-devel
23
+ ```
24
+
25
+ Ubuntu systems:
26
+
27
+ ```
28
+ apt-get install libexpat1-dev
29
+ ```
30
+
19
31
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
20
32
 
21
33
  ## Notes
@@ -2,7 +2,7 @@ module SensuPluginsSupervisor
2
2
  module Version
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 2
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-supervisor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: xmlparser
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.7.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.7.2
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: bundler
43
57
  requirement: !ruby/object:Gem::Requirement