sensu-plugins-meta 0.3.4 → 1.0.0
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +0 -2
- data/lib/sensu_plugins_meta/version.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6446d7c579e50b37e6030a3b195d5a26acd753844bd2004329c6181eaa9187fe
|
|
4
|
+
data.tar.gz: e8ba8e181be25eda9890213ed5b7513153c522264221e4dece2c0c0d1b64a343
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4536b873817af4247ed9069c595a5413c86f5ccdabb75b4e25a631eb524923ffa5ba8d41332689300b3f298514551c7d6e4ee8f67772559d72504f74f15a5b9a
|
|
7
|
+
data.tar.gz: d18196b7a97db155f44fa6d2cf561b843ca533245a07b5907e5ba816e19c5651fd5ff0e26519c85693be4be065ac98da83842131f7f5971d431e070f4fdb84e4
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
3
3
|
|
|
4
4
|
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
|
5
5
|
|
|
6
|
+
## [1.0.0] - 2018-07-11
|
|
7
|
+
### Changed
|
|
8
|
+
- Drop support for Ruby 2.1 and 2.2
|
|
9
|
+
|
|
6
10
|
## [0.3.4] - 2018-05-09
|
|
7
11
|
### Changed
|
|
8
12
|
- Reconfigure the CI build so it passes again
|
|
@@ -38,6 +42,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
38
42
|
### Added
|
|
39
43
|
- Initial release
|
|
40
44
|
|
|
45
|
+
[1.0.0]: https://github.com/socrata-platform/sensu-plugins-meta/compare/v0.3.3...v1.0.0
|
|
41
46
|
[0.3.3]: https://github.com/socrata-platform/sensu-plugins-meta/compare/v0.3.2...v0.3.3
|
|
42
47
|
[0.3.2]: https://github.com/socrata-platform/sensu-plugins-meta/compare/v0.3.1...v0.3.2
|
|
43
48
|
[0.3.1]: https://github.com/socrata-platform/sensu-plugins-meta/compare/v0.3.0...v0.3.1
|
data/README.md
CHANGED
|
@@ -3,11 +3,9 @@ Sensu Plugins Meta
|
|
|
3
3
|
|
|
4
4
|
[][travis]
|
|
5
5
|
[][rubygems]
|
|
6
|
-
[][gemnasium]
|
|
7
6
|
|
|
8
7
|
[travis]: https://travis-ci.org/socrata-platform/sensu-plugins-meta
|
|
9
8
|
[rubygems]: https://rubygems.org/gems/sensu-plugins-meta
|
|
10
|
-
[gemnasium]: https://gemnasium.com/socrata-platform/sensu-plugins-meta
|
|
11
9
|
|
|
12
10
|
Functionality
|
|
13
11
|
-------------
|
|
@@ -4,11 +4,11 @@ module SensuPluginsMeta
|
|
|
4
4
|
# The version of this Sensu plugin.
|
|
5
5
|
module Version
|
|
6
6
|
# The major version.
|
|
7
|
-
MAJOR =
|
|
7
|
+
MAJOR = 1
|
|
8
8
|
# The minor version.
|
|
9
|
-
MINOR =
|
|
9
|
+
MINOR = 0
|
|
10
10
|
# The patch version.
|
|
11
|
-
PATCH =
|
|
11
|
+
PATCH = 0
|
|
12
12
|
# Concat them into a version string
|
|
13
13
|
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
|
14
14
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-meta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sensu-Plugins and contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|
|
@@ -202,7 +202,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
202
202
|
requirements:
|
|
203
203
|
- - ">="
|
|
204
204
|
- !ruby/object:Gem::Version
|
|
205
|
-
version: 2.
|
|
205
|
+
version: 2.3.0
|
|
206
206
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
207
|
requirements:
|
|
208
208
|
- - ">="
|
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
210
210
|
version: '0'
|
|
211
211
|
requirements: []
|
|
212
212
|
rubyforge_project:
|
|
213
|
-
rubygems_version: 2.7.
|
|
213
|
+
rubygems_version: 2.7.7
|
|
214
214
|
signing_key:
|
|
215
215
|
specification_version: 4
|
|
216
216
|
summary: Sensu plugins for batching multiple checks as one
|