sensu-plugins-bluepill 0.0.1.alpha.2 → 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: cdf1afb494041fb2ccb4dadc11142f856a9fe3ad
4
- data.tar.gz: f9b476f42a67b1ef5b8859e9a8401a2822e17919
3
+ metadata.gz: da857dc8c9bcbfe131b841cbf662dc31c6796074
4
+ data.tar.gz: aee3654dd309c167ecac539a57dcd578ef91f509
5
5
  SHA512:
6
- metadata.gz: 00a17b8c561720b30c9691fd3ef5c059de92cec5ca6acb201af818db0219a60428fefe243b19196905b5d22dc9c7b4483f8fa2586935ed6523bec3ba84e2a89b
7
- data.tar.gz: 57ad68698d01bef2200bfba986bae702e18304233d263fa169c295f47b1c2df62b97b0202709d033a03af54f319ac0a9f0ea1bad4b0c259bdf5daa785188e929
6
+ metadata.gz: 15276d6f1f1b72774c94c6078e4f1b5a477efeac75f30d04d9f4d5820f42a72385486b7b122d535d75c0f9520e2e12408b6099241e17eed306bddaa5bad90aec
7
+ data.tar.gz: 9829ae57e1e03b6a0e8225cac1298dc807a723a9f73209b024d57b1bcb4653b1b47dde494b56c708b7ff46ab712fecc62cfe71c690a4a980cdf4b50f93056a3c
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
- #### 0.0.1.alpha.1
2
- * same functionality as the community repo
1
+ #Change Log
2
+ This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- #### 0.0.1.alpha.2
5
- * add gem metadata
6
- * add Vagrantfile to be provisioned by Chef
4
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
+
6
+ ## Unreleased][unreleased]
7
+
8
+ ## 0.0.1 - 2015-04-30
9
+
10
+ ### Added
11
+ - initial release
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-bluepill/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-bluepill)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-bluepill/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-bluepill)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-bluepill.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-bluepill)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-bluepill](https://codeship.com/projects/9d036de0-cd24-0132-033d-2698d59c4ad3/status?branch=master)](https://codeship.com/projects/76229)
8
9
 
9
10
  ## Functionality
10
11
 
11
12
  ## Files
12
- * bin/check-bluepill-procs
13
+ * bin/check-bluepill-procs.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-bluepill -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-bluepill`
30
-
31
- #### Bundler
32
-
33
- Add *sensu-plugins-bluepill* 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-bluepill' 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-bluepill' 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
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-bluepill/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsBluepill
5
- # Gem version
6
- VERSION = '0.0.1.alpha.2'
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
7
14
  end
@@ -0,0 +1,28 @@
1
+ require 'json'
2
+
3
+ # encoding: utf-8
4
+ module SensuPluginsBluepill
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-bluepill'
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
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-bluepill
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha.2
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-07 00:00:00.000000000 Z
33
+ date: 2015-04-30 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: english
@@ -80,14 +80,14 @@ dependencies:
80
80
  requirements:
81
81
  - - '='
82
82
  - !ruby/object:Gem::Version
83
- version: 0.17.0
83
+ version: 0.30.0
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - '='
89
89
  - !ruby/object:Gem::Version
90
- version: 0.17.0
90
+ version: 0.30.0
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: rspec
93
93
  requirement: !ruby/object:Gem::Requirement
@@ -197,14 +197,18 @@ files:
197
197
  - README.md
198
198
  - bin/check-bluepill-procs.rb
199
199
  - lib/sensu-plugins-bluepill.rb
200
+ - lib/sensu-plugins-bluepill/version.rb
200
201
  homepage: https://github.com/sensu-plugins/sensu-plugins-bluepill
201
202
  licenses:
202
203
  - MIT
203
204
  metadata:
204
205
  maintainer: ''
205
206
  development_status: unmaintained
206
- production_status: unstable - testing reccomended
207
- post_install_message:
207
+ production_status: unstable - testing recommended
208
+ release_draft: 'false'
209
+ release_prerelease: 'false'
210
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
211
+ in /etc/default/sensu
208
212
  rdoc_options: []
209
213
  require_paths:
210
214
  - lib
@@ -215,14 +219,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
215
219
  version: 1.9.3
216
220
  required_rubygems_version: !ruby/object:Gem::Requirement
217
221
  requirements:
218
- - - ">"
222
+ - - ">="
219
223
  - !ruby/object:Gem::Version
220
- version: 1.3.1
224
+ version: '0'
221
225
  requirements: []
222
226
  rubyforge_project:
223
- rubygems_version: 2.2.2
227
+ rubygems_version: 2.4.6
224
228
  signing_key:
225
229
  specification_version: 4
226
230
  summary: Bluepill process supervisor plugins
227
231
  test_files: []
228
- has_rdoc:
metadata.gz.sig CHANGED
Binary file