sensu-plugins-boundary 0.0.1.alpha.1 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b839bb770873e86836a80e42814d5ed078ebd9f4
4
- data.tar.gz: ff1922142e92548dc6b5b723a6d5cd860ec67d50
3
+ metadata.gz: 024403adab80eb2398454320c2cd39345d98f804
4
+ data.tar.gz: 348991dc1e0a9e02513ac5684d5b0e839e9dd5d6
5
5
  SHA512:
6
- metadata.gz: 8285f6ba8f6b95dab7836229e097183c3bd5ac0dc7f12d91812db86d9c919637d609fa8631e5b3ead09f8e7ebdd1be1fe7b363d09e99c63fc578df4725b765db
7
- data.tar.gz: ce984f4703ce978e93cd40eedae8106df6fbfae014773968132a5da758d7b3412c1f58858fd84982e362dfd94a01cdf37fac92e0a1d040bfab5e412af8e308d3
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
- #### 0.0.1.alpha.1
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 devops@yieldbot.com
1
+ Copyright (c) 2015 Sensu-Plugins
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -5,49 +5,17 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-boundary)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-boundary.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-boundary)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-boundary](https://codeship.com/projects/e1007420-d4b4-0132-5af9-16774c8da8c5/status?branch=master)](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
- Add the public key (if you haven’t already) as a trusted certificate
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
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-boundary/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsBoundary
5
- # Gem version
6
- VERSION = '0.0.1.alpha.1'
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
7
14
  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.alpha.1
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Yieldbot, Inc. and contributors
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-09 00:00:00.000000000 Z
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.17.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.17.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: 1.3.1
236
+ version: '0'
235
237
  requirements: []
236
238
  rubyforge_project:
237
- rubygems_version: 2.2.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