sensu-plugins-boundary 0.0.1.alpha.1 → 0.0.1
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +12 -1
- data/LICENSE +1 -1
- data/README.md +3 -35
- data/lib/sensu-plugins-boundary/version.rb +28 -0
- data/lib/sensu-plugins-boundary.rb +10 -3
- data.tar.gz.sig +0 -0
- metadata +13 -12
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 024403adab80eb2398454320c2cd39345d98f804
|
|
4
|
+
data.tar.gz: 348991dc1e0a9e02513ac5684d5b0e839e9dd5d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 914f33f8c5451d63aa3f82cc311b8592677b07a998d951ae28e3a4a1cf18cd6ce1dcfd1ce824b5667c914fe26a2ee29da9b30ef504be13430b8a855701b7822a
|
|
7
|
+
data.tar.gz: 8492a1156f5fe3d6605018c853bfe08fce8ae9e9102e14faa52754a2362f9e0f5e8d3deea8b9b56623db28dd03b47451c2539a3a3d6362296d8de4d69e3c1942
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
#Change Log
|
|
5
|
+
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
|
+
|
|
7
|
+
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
|
8
|
+
|
|
9
|
+
## Unreleased][unreleased]
|
|
10
|
+
|
|
11
|
+
## 0.0.1 - 2015-05-04
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- initial release
|
|
15
|
+
|
|
5
16
|
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -5,49 +5,17 @@
|
|
|
5
5
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary)
|
|
6
6
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary)
|
|
7
7
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-boundary)
|
|
8
|
+
[ ](https://codeship.com/projects/77868)
|
|
8
9
|
|
|
9
10
|
## Functionality
|
|
10
11
|
|
|
11
12
|
## Files
|
|
12
|
-
* bin/check-boundary-meters
|
|
13
|
+
* bin/check-boundary-meters.rb
|
|
13
14
|
|
|
14
15
|
## Usage
|
|
15
16
|
|
|
16
17
|
## Installation
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
|
|
22
|
-
gem install sensu-plugins-boundary -P MediumSecurity
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
You can also download the key from /certs/ within each repository.
|
|
26
|
-
|
|
27
|
-
#### Rubygems
|
|
28
|
-
|
|
29
|
-
`gem install sensu-plugins-boundary`
|
|
30
|
-
|
|
31
|
-
#### Bundler
|
|
32
|
-
|
|
33
|
-
Add *sensu-plugins-boundary* to your Gemfile and run `bundle install` or `bundle update`
|
|
34
|
-
|
|
35
|
-
#### Chef
|
|
36
|
-
|
|
37
|
-
Using the Sensu **sensu_gem** LWRP
|
|
38
|
-
```
|
|
39
|
-
sensu_gem 'sensu-plugins-boundary' do
|
|
40
|
-
options('--prerelease')
|
|
41
|
-
version '0.0.1'
|
|
42
|
-
end
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
Using the Chef **gem_package** resource
|
|
46
|
-
```
|
|
47
|
-
gem_package 'sensu-plugins-boundary' do
|
|
48
|
-
options('--prerelease')
|
|
49
|
-
version '0.0.1'
|
|
50
|
-
end
|
|
51
|
-
```
|
|
19
|
+
[Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
|
|
52
20
|
|
|
53
21
|
## Notes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
# encoding: utf-8
|
|
4
|
+
module SensuPluginsBoundary
|
|
5
|
+
# This defines the version of the gem
|
|
6
|
+
module Version
|
|
7
|
+
MAJOR = 0
|
|
8
|
+
MINOR = 0
|
|
9
|
+
PATCH = 1
|
|
10
|
+
|
|
11
|
+
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
|
12
|
+
|
|
13
|
+
NAME = 'sensu-plugins-boundary'
|
|
14
|
+
BANNER = "#{NAME} v%s"
|
|
15
|
+
|
|
16
|
+
module_function
|
|
17
|
+
|
|
18
|
+
def version
|
|
19
|
+
format(BANNER, VER_STRING)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def json_version
|
|
23
|
+
{
|
|
24
|
+
'version' => VER_STRING
|
|
25
|
+
}.to_json
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-boundary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.1
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Sensu Plugins and contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain:
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
|
|
31
31
|
HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2015-04
|
|
33
|
+
date: 2015-05-04 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: rest-client
|
|
@@ -92,16 +92,16 @@ dependencies:
|
|
|
92
92
|
name: rubocop
|
|
93
93
|
requirement: !ruby/object:Gem::Requirement
|
|
94
94
|
requirements:
|
|
95
|
-
- -
|
|
95
|
+
- - "~>"
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 0.
|
|
97
|
+
version: '0.30'
|
|
98
98
|
type: :development
|
|
99
99
|
prerelease: false
|
|
100
100
|
version_requirements: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
|
-
- -
|
|
102
|
+
- - "~>"
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.
|
|
104
|
+
version: '0.30'
|
|
105
105
|
- !ruby/object:Gem::Dependency
|
|
106
106
|
name: rspec
|
|
107
107
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -211,6 +211,7 @@ files:
|
|
|
211
211
|
- README.md
|
|
212
212
|
- bin/check-boundary-meters.rb
|
|
213
213
|
- lib/sensu-plugins-boundary.rb
|
|
214
|
+
- lib/sensu-plugins-boundary/version.rb
|
|
214
215
|
homepage: https://github.com/sensu-plugins/sensu-plugins-boundary
|
|
215
216
|
licenses:
|
|
216
217
|
- MIT
|
|
@@ -218,7 +219,8 @@ metadata:
|
|
|
218
219
|
maintainer: ''
|
|
219
220
|
development_status: unmaintained
|
|
220
221
|
production_status: unstable - testing recommended
|
|
221
|
-
post_install_message:
|
|
222
|
+
post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
|
|
223
|
+
in /etc/default/sensu
|
|
222
224
|
rdoc_options: []
|
|
223
225
|
require_paths:
|
|
224
226
|
- lib
|
|
@@ -229,14 +231,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
229
231
|
version: 1.9.3
|
|
230
232
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
233
|
requirements:
|
|
232
|
-
- - "
|
|
234
|
+
- - ">="
|
|
233
235
|
- !ruby/object:Gem::Version
|
|
234
|
-
version:
|
|
236
|
+
version: '0'
|
|
235
237
|
requirements: []
|
|
236
238
|
rubyforge_project:
|
|
237
|
-
rubygems_version: 2.
|
|
239
|
+
rubygems_version: 2.4.6
|
|
238
240
|
signing_key:
|
|
239
241
|
specification_version: 4
|
|
240
242
|
summary: Sensu plugins for boundary
|
|
241
243
|
test_files: []
|
|
242
|
-
has_rdoc:
|
metadata.gz.sig
CHANGED
|
Binary file
|