sensu-plugins-dashing 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d558f946786a169051203b49c12bfcda9999478b
4
- data.tar.gz: 3ace2459b8a73a1106e0ffd41b73f79489251ea1
3
+ metadata.gz: 844e348a5cba4b972d717661210ebe48017fc40c
4
+ data.tar.gz: c0bae907859a3e8a561f0b5717442cab460f7f90
5
5
  SHA512:
6
- metadata.gz: cbab3264a4b6f41812bc4e5876e01d124c2964e730b6365f9feb566722d981c1958b108673754f7ace464974aa7690a962c08a05ff1546e0b2eafeee18b01676
7
- data.tar.gz: 6a37ce9bfde0a8c15befdf35a82326f3400a4a7206d55badd3f773f11a1dc79833547222290e5d4ffb5cf16a084a9b8dfe5196a5e3db2443aeb415819ad2b20c
6
+ metadata.gz: b79933200147b559c78bab246d980bb502b3f829595959765cfd4e759f5b06491bd54a40e2a8b56b6d69a974aa79d1e7abd7414b189dc9e6bac505ffd3fbbd10
7
+ data.tar.gz: 11593a29744ccbf479ab9c3f4ee979d80ac941be57077a3714c8a702239bca9907e8bb8df85a4eba9e278a5f786c54c6ca8d55540a2181a09e9f3ab90470a96b
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,4 +1,15 @@
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-04-30
12
+
13
+ ### Added
14
+ - initial release
15
+
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,11 +5,12 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dashing/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dashing)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dashing/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dashing)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-dashing.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-dashing)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-dashing](https://codeship.com/projects/94441700-d5ad-0132-74aa-1e0a7d4d648e/status?branch=master)](https://codeship.com/projects/78141)
8
9
 
9
10
  ## Functionality
10
11
 
11
12
  ## Files
12
- * bin/handler-dashing
13
+ * bin/handler-dashing.rb
13
14
 
14
15
  ## Usage
15
16
 
@@ -24,39 +25,6 @@
24
25
 
25
26
  ## Installation
26
27
 
27
- Add the public key (if you haven’t already) as a trusted certificate
28
-
29
- ```
30
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
31
- gem install sensu-plugins-dashing -P MediumSecurity
32
- ```
33
-
34
- You can also download the key from /certs/ within each repository.
35
-
36
- #### Rubygems
37
-
38
- `gem install sensu-plugins-dashing`
39
-
40
- #### Bundler
41
-
42
- Add *sensu-plugins-disk-checks* to your Gemfile and run `bundle install` or `bundle update`
43
-
44
- #### Chef
45
-
46
- Using the Sensu **sensu_gem** LWRP
47
- ```
48
- sensu_gem 'sensu-plugins-dashing' do
49
- options('--prerelease')
50
- version '0.0.1'
51
- end
52
- ```
53
-
54
- Using the Chef **gem_package** resource
55
- ```
56
- gem_package 'sensu-plugins-dashing' do
57
- options('--prerelease')
58
- version '0.0.1'
59
- end
60
- ```
28
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
61
29
 
62
30
  ## Notes
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-dashing/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsDashing
5
- # Gem version
6
- VERSION = '0.0.1.alpha.1'
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 SensuPluginsDashing
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-dashing'
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-dashing
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,36 +30,8 @@ cert_chain:
30
30
  8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
31
  HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
32
  -----END CERTIFICATE-----
33
- date: 2015-04-11 00:00:00.000000000 Z
33
+ date: 2015-05-22 00:00:00.000000000 Z
34
34
  dependencies:
35
- - !ruby/object:Gem::Dependency
36
- name: rest-client
37
- requirement: !ruby/object:Gem::Requirement
38
- requirements:
39
- - - '='
40
- - !ruby/object:Gem::Version
41
- version: 1.8.0
42
- type: :runtime
43
- prerelease: false
44
- version_requirements: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - '='
47
- - !ruby/object:Gem::Version
48
- version: 1.8.0
49
- - !ruby/object:Gem::Dependency
50
- name: json
51
- requirement: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - '='
54
- - !ruby/object:Gem::Version
55
- version: 1.8.2
56
- type: :runtime
57
- prerelease: false
58
- version_requirements: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - '='
61
- - !ruby/object:Gem::Version
62
- version: 1.8.2
63
35
  - !ruby/object:Gem::Dependency
64
36
  name: sensu-plugin
65
37
  requirement: !ruby/object:Gem::Requirement
@@ -92,16 +64,16 @@ dependencies:
92
64
  name: rubocop
93
65
  requirement: !ruby/object:Gem::Requirement
94
66
  requirements:
95
- - - '='
67
+ - - "~>"
96
68
  - !ruby/object:Gem::Version
97
- version: 0.17.0
69
+ version: '0.30'
98
70
  type: :development
99
71
  prerelease: false
100
72
  version_requirements: !ruby/object:Gem::Requirement
101
73
  requirements:
102
- - - '='
74
+ - - "~>"
103
75
  - !ruby/object:Gem::Version
104
- version: 0.17.0
76
+ version: '0.30'
105
77
  - !ruby/object:Gem::Dependency
106
78
  name: rspec
107
79
  requirement: !ruby/object:Gem::Requirement
@@ -211,6 +183,7 @@ files:
211
183
  - README.md
212
184
  - bin/handler-dashing.rb
213
185
  - lib/sensu-plugins-dashing.rb
186
+ - lib/sensu-plugins-dashing/version.rb
214
187
  homepage: https://github.com/sensu-plugins/sensu-plugins-dashing
215
188
  licenses:
216
189
  - MIT
@@ -218,7 +191,10 @@ metadata:
218
191
  maintainer: ''
219
192
  development_status: unmaintained
220
193
  production_status: unstable - testing recommended
221
- post_install_message:
194
+ releae_draft: 'false'
195
+ release_prerelease: 'false'
196
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
197
+ in /etc/default/sensu
222
198
  rdoc_options: []
223
199
  require_paths:
224
200
  - lib
@@ -229,14 +205,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
229
205
  version: 1.9.3
230
206
  required_rubygems_version: !ruby/object:Gem::Requirement
231
207
  requirements:
232
- - - ">"
208
+ - - ">="
233
209
  - !ruby/object:Gem::Version
234
- version: 1.3.1
210
+ version: '0'
235
211
  requirements: []
236
212
  rubyforge_project:
237
- rubygems_version: 2.2.2
213
+ rubygems_version: 2.4.6
238
214
  signing_key:
239
215
  specification_version: 4
240
- summary: Sensu plugins for dashsing
216
+ summary: Sensu plugins for dashing
241
217
  test_files: []
242
- has_rdoc:
metadata.gz.sig CHANGED
Binary file