sensu-plugins-campfire 0.0.2 → 0.0.3

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: fb82cf12fb5846dc7817178a933a79cf4e6cdbaa
4
- data.tar.gz: 58d5e9bf639e182b02a52ffc28bed97930b2506d
3
+ metadata.gz: 7af2c7b1e85c3a2d65fede79bdeb3d474af3f761
4
+ data.tar.gz: 2f6e72ecb8bb5583d2dcdad9309a6dfcc73d1e43
5
5
  SHA512:
6
- metadata.gz: 9cee7db25826ceb80edd88f92d8f8aa2735da314273aa481418f15b93a757411723d704fc2c25ee45d2414d5dcd931dcfb51635e897ac2663f3644e92465301f
7
- data.tar.gz: 60355890ddff15f1b99e39c6423b0ab95c162086ed1aa8c55d3e5475fce4f1b4c2a0db6e8f406144062863d6c0a50f5b7dabd38e05822ec51fc7e41fa24107e2
6
+ metadata.gz: d20dbb5bb1ce6cafc8f1c07ba08ccf6ab5fa191e43b5636f81d64480976a547f0d5180f97fa55935c046a1dcff9ce7eab4bfa80458ee3f4e94c93e28d49c4270
7
+ data.tar.gz: 18f11692273f089b9f2e214020319e197dcdcc476af52669f539d8bee6df83a40ed89e29d041423ada2476dcbd8bdb466757a3028430837c993f71e52ce287f5
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md CHANGED
@@ -5,12 +5,21 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## Unreleased][unreleased]
7
7
 
8
- ## 0.0.1 - 2015-04-21
8
+ ## [0.0.1] - 2015-04-21
9
9
 
10
10
  ### Added
11
11
  - initial release
12
12
 
13
- ## 0.0.2 - 2015-04-21
13
+ ## [0.0.2] - 2015-04-21
14
14
 
15
15
  ### Fixed
16
16
  - deployment issue
17
+
18
+ ## [0.0.3] - 2015-06-02
19
+
20
+ ### Fixed
21
+ - added binstubs
22
+
23
+ ### Changed
24
+ - removed cruft from /lib
25
+
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,12 +5,12 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-campfire.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-campfire)
8
- [ ![Codeship Status for sensu-plugins/sensu-plugins-campfire](https://codeship.com/projects/85bce530-ca50-0132-f20b-4a5d1f8b26a4/status?branch=master)](https://codeship.com/projects/75440)
8
+ [![Codeship Status for sensu-plugins/sensu-plugins-campfire](https://codeship.com/projects/85bce530-ca50-0132-f20b-4a5d1f8b26a4/status?branch=master)](https://codeship.com/projects/75440)
9
9
 
10
10
  ## Functionality
11
11
 
12
12
  ## Files
13
- * bin/handler-campfire
13
+ * bin/handler-campfire.rb
14
14
 
15
15
  ## Usage
16
16
 
@@ -27,39 +27,6 @@
27
27
 
28
28
  ## Installation
29
29
 
30
- Add the public key (if you haven’t already) as a trusted certificate
31
-
32
- ```
33
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
34
- gem install sensu-plugins-campfire -P MediumSecurity
35
- ```
36
-
37
- You can also download the key from /certs/ within each repository.
38
-
39
- #### Rubygems
40
-
41
- `gem install sensu-plugins-campfire`
42
-
43
- #### Bundler
44
-
45
- Add *sensu-plugins-disk-checks* to your Gemfile and run `bundle install` or `bundle update`
46
-
47
- #### Chef
48
-
49
- Using the Sensu **sensu_gem** LWRP
50
- ```
51
- sensu_gem 'sensu-plugins-campfire' do
52
- options('--prerelease')
53
- version '0.0.1'
54
- end
55
- ```
56
-
57
- Using the Chef **gem_package** resource
58
- ```
59
- gem_package 'sensu-plugins-campfire' do
60
- options('--prerelease')
61
- version '0.0.1'
62
- end
63
- ```
30
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
64
31
 
65
32
  ## Notes
@@ -1,28 +1,9 @@
1
- require 'json'
2
-
3
- # encoding: utf-8
4
1
  module SensuPluginsCampfire
5
- # This defines the version of the gem
6
2
  module Version
7
3
  MAJOR = 0
8
4
  MINOR = 0
9
- PATCH = 2
5
+ PATCH = 3
10
6
 
11
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
12
-
13
- NAME = 'sensu-plugins-campfire'
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
8
  end
28
9
  end
@@ -1,14 +1 @@
1
1
  require 'sensu-plugins-campfire/version'
2
-
3
- # Load the defaults
4
-
5
- #
6
- # Default class
7
- #
8
- module SensuPluginsCampfire
9
- class << self
10
- end
11
-
12
- class << self
13
- end
14
- end
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,14 +1,36 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-campfire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
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
- cert_chain: []
11
- date: 2015-04-21 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMRIwEAYDVQQDDAltYXR0
14
+ am9uZXMxGDAWBgoJkiaJk/IsZAEZFgh5aWVsZGJvdDETMBEGCgmSJomT8ixkARkW
15
+ A2NvbTAeFw0xNTAxMjgyMTAyNTFaFw0xNjAxMjgyMTAyNTFaMEMxEjAQBgNVBAMM
16
+ CW1hdHRqb25lczEYMBYGCgmSJomT8ixkARkWCHlpZWxkYm90MRMwEQYKCZImiZPy
17
+ LGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyTSzVYnO
18
+ CLgyrIyT1mBQakArQyW8xhi6MlDqyzXHJGeERT790U6EgoBVeS4XoK0ptFZNR8Tf
19
+ zko0w+Nv47TarSCgkPOaxY+mxWnAVR10dOmfeLr7huiMyps+YD56/EF2FqQ3jf/+
20
+ qohENfKD91qy1ieEy+Fn7Pf74ltbNKUdkb9a9eFXQ0DQ4ip5vik7DzjQkUTj4lca
21
+ k6ArwnmHX4YDhZoYtrQJ8jVktN0/+NtA40M5qkCYHNe5tUW25b/tKVYuioxG6b2Z
22
+ oIzaZxRLxf6HVAWpCVRT/F5+/yjigkX4u++eYacfLGleXQzoK7BL65vHGMJygWEE
23
+ 0TKGqFOrl/L0AQIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
24
+ HQ4EFgQUEf6a8Td7MrSZc8ImbLFZAENPbz0wIQYDVR0RBBowGIEWbWF0dGpvbmVz
25
+ QHlpZWxkYm90LmNvbTAhBgNVHRIEGjAYgRZtYXR0am9uZXNAeWllbGRib3QuY29t
26
+ MA0GCSqGSIb3DQEBBQUAA4IBAQBbzXAYA3BVGw8DZ0YYoY1VHPNEcH5qPIApmHO8
27
+ rvSmuUT0yMEi7u00H/5uHRFf4LleGT/+sTdyXKsNPGT9kdRuQEgwi+vf7Zfvd8aX
28
+ UF/+4VkEYf/8rV8Ere6u2QaWPgApdMV6JjKr1fAwCTd8AuGXNaWItiPPMseSQzLJ
29
+ JKP4hVvbc1d+oS925B1lcBiqn2aYvElbyNAVmQPywNNqkWmvtlqj9ZVJfV5HQLdu
30
+ 8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
+ HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
+ -----END CERTIFICATE-----
33
+ date: 2015-06-03 00:00:00.000000000 Z
12
34
  dependencies:
13
35
  - !ruby/object:Gem::Dependency
14
36
  name: tinder
@@ -56,16 +78,16 @@ dependencies:
56
78
  name: rubocop
57
79
  requirement: !ruby/object:Gem::Requirement
58
80
  requirements:
59
- - - '='
81
+ - - "~>"
60
82
  - !ruby/object:Gem::Version
61
- version: 0.17.0
83
+ version: '0.30'
62
84
  type: :development
63
85
  prerelease: false
64
86
  version_requirements: !ruby/object:Gem::Requirement
65
87
  requirements:
66
- - - '='
88
+ - - "~>"
67
89
  - !ruby/object:Gem::Version
68
- version: 0.17.0
90
+ version: '0.30'
69
91
  - !ruby/object:Gem::Dependency
70
92
  name: rspec
71
93
  requirement: !ruby/object:Gem::Requirement
@@ -166,7 +188,8 @@ dependencies:
166
188
  version: '0.10'
167
189
  description: Sensu plugins for campfire
168
190
  email: "<sensu-users@googlegroups.com>"
169
- executables: []
191
+ executables:
192
+ - handler-campfire.rb
170
193
  extensions: []
171
194
  extra_rdoc_files: []
172
195
  files:
@@ -180,10 +203,13 @@ homepage: https://github.com/sensu-plugins/sensu-plugins-campfire
180
203
  licenses:
181
204
  - MIT
182
205
  metadata:
183
- maintainer: ''
184
- development_status: unmaintained
206
+ maintainer: sensu-plugin
207
+ development_status: active
185
208
  production_status: unstable - testing recommended
186
- post_install_message:
209
+ release_draft: 'false'
210
+ release_prerelease: 'false'
211
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
212
+ in /etc/default/sensu
187
213
  rdoc_options: []
188
214
  require_paths:
189
215
  - lib
metadata.gz.sig ADDED
Binary file